2018-02-23 07:58:16 +00:00
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
# This file is part of lyx2lyx
|
|
|
|
|
# Copyright (C) 2018 The LyX team
|
|
|
|
|
#
|
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
|
#
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
#
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
|
|
""" Convert files to the file format generated by lyx 2.4"""
|
|
|
|
|
|
|
|
|
|
import re, string
|
|
|
|
|
import unicodedata
|
|
|
|
|
import sys, os
|
|
|
|
|
|
2018-08-07 10:14:45 +00:00
|
|
|
|
from datetime import (datetime, date, time)
|
2018-08-05 07:51:12 +00:00
|
|
|
|
|
2018-02-23 07:58:16 +00:00
|
|
|
|
# Uncomment only what you need to import, please.
|
|
|
|
|
|
2019-05-24 11:49:32 +00:00
|
|
|
|
from parser_tools import (count_pars_in_inset, del_token, find_end_of_inset,
|
2019-07-04 18:49:06 +00:00
|
|
|
|
find_end_of_layout, find_token, find_token_backwards, find_token_exact,
|
|
|
|
|
find_re, get_bool_value,
|
2019-05-24 11:49:32 +00:00
|
|
|
|
get_containing_layout, get_option_value, get_value, get_quoted_value)
|
|
|
|
|
# del_value, del_complete_lines,
|
2018-07-31 11:44:48 +00:00
|
|
|
|
# find_complete_lines, find_end_of,
|
2019-06-04 09:01:19 +00:00
|
|
|
|
# find_re, find_substring,
|
2018-08-17 08:22:32 +00:00
|
|
|
|
# get_containing_inset,
|
2018-05-21 11:43:16 +00:00
|
|
|
|
# is_in_inset, set_bool_value
|
2019-07-04 18:49:06 +00:00
|
|
|
|
# find_tokens, check_token
|
2018-02-23 07:58:16 +00:00
|
|
|
|
|
2019-07-11 11:21:32 +00:00
|
|
|
|
from lyx2lyx_tools import (put_cmd_in_ert, add_to_preamble, insert_to_preamble, lyx2latex,
|
|
|
|
|
revert_language, revert_flex_inset, str2bool)
|
|
|
|
|
# revert_font_attrs, latex_length
|
2019-06-22 11:56:12 +00:00
|
|
|
|
# get_ert, lyx2verbatim, length_in_bp, convert_info_insets
|
2019-07-11 11:21:32 +00:00
|
|
|
|
# revert_flex_inset, hex2ratio
|
2018-02-23 07:58:16 +00:00
|
|
|
|
|
|
|
|
|
####################################################################
|
|
|
|
|
# Private helper functions
|
|
|
|
|
|
2018-08-18 14:18:03 +00:00
|
|
|
|
def add_preamble_fonts(document, fontmap):
|
|
|
|
|
" Add collected font-packages with their option to user-preamble"
|
|
|
|
|
|
|
|
|
|
for pkg in fontmap:
|
|
|
|
|
if len(fontmap[pkg]) > 0:
|
|
|
|
|
xoption = "[" + ",".join(fontmap[pkg]) + "]"
|
|
|
|
|
else:
|
|
|
|
|
xoption = ""
|
2019-07-04 18:49:06 +00:00
|
|
|
|
preamble = "\\usepackage%s{%s}" % (xoption, pkg)
|
2018-08-18 14:18:03 +00:00
|
|
|
|
add_to_preamble(document, [preamble])
|
|
|
|
|
|
|
|
|
|
|
2018-08-20 13:47:49 +00:00
|
|
|
|
def createkey(pkg, options):
|
|
|
|
|
options.sort()
|
|
|
|
|
return pkg + ':' + "-".join(options)
|
|
|
|
|
|
|
|
|
|
class fontinfo:
|
|
|
|
|
def __init__(self):
|
|
|
|
|
self.fontname = None # key into font2pkgmap
|
|
|
|
|
self.fonttype = None # roman,sans,typewriter,math
|
|
|
|
|
self.scaletype = None # None,sf,tt
|
|
|
|
|
self.scaleopt = None # None, 'scaled', 'scale'
|
|
|
|
|
self.scaleval = 1
|
|
|
|
|
self.package = None
|
|
|
|
|
self.options = []
|
|
|
|
|
self.pkgkey = None # key into pkg2fontmap
|
2019-07-15 11:29:09 +00:00
|
|
|
|
self.osfopt = None # None, string
|
|
|
|
|
self.osfdef = "false" # "false" or "true"
|
2018-08-20 13:47:49 +00:00
|
|
|
|
|
|
|
|
|
def addkey(self):
|
|
|
|
|
self.pkgkey = createkey(self.package, self.options)
|
|
|
|
|
|
|
|
|
|
class fontmapping:
|
|
|
|
|
def __init__(self):
|
|
|
|
|
self.font2pkgmap = dict()
|
|
|
|
|
self.pkg2fontmap = dict()
|
|
|
|
|
self.pkginmap = dict() # defines, if a map for package exists
|
|
|
|
|
|
2019-07-15 11:29:09 +00:00
|
|
|
|
def expandFontMapping(self, font_list, font_type, scale_type, pkg, scaleopt = None, osfopt = None, osfdef = "false"):
|
2018-08-20 13:47:49 +00:00
|
|
|
|
" Expand fontinfo mapping"
|
|
|
|
|
#
|
|
|
|
|
# fontlist: list of fontnames, each element
|
|
|
|
|
# may contain a ','-separated list of needed options
|
|
|
|
|
# like e.g. 'IBMPlexSansCondensed,condensed'
|
|
|
|
|
# font_type: one of 'roman', 'sans', 'typewriter', 'math'
|
|
|
|
|
# scale_type: one of None, 'sf', 'tt'
|
|
|
|
|
# pkg: package defining the font. Defaults to fontname if None
|
|
|
|
|
# scaleopt: one of None, 'scale', 'scaled', or some other string
|
|
|
|
|
# to be used in scale option (e.g. scaled=0.7)
|
2019-07-13 15:03:25 +00:00
|
|
|
|
# osfopt: None or some other string to be used in osf option
|
2019-07-15 11:29:09 +00:00
|
|
|
|
# osfdef: "true" if osf is default
|
2018-08-20 13:47:49 +00:00
|
|
|
|
for fl in font_list:
|
|
|
|
|
fe = fontinfo()
|
|
|
|
|
fe.fonttype = font_type
|
|
|
|
|
fe.scaletype = scale_type
|
|
|
|
|
flt = fl.split(",")
|
|
|
|
|
font_name = flt[0]
|
|
|
|
|
fe.fontname = font_name
|
|
|
|
|
fe.options = flt[1:]
|
|
|
|
|
fe.scaleopt = scaleopt
|
2019-07-13 15:03:25 +00:00
|
|
|
|
fe.osfopt = osfopt
|
2019-07-15 11:29:09 +00:00
|
|
|
|
fe.osfdef = osfdef
|
2018-08-20 13:47:49 +00:00
|
|
|
|
if pkg == None:
|
|
|
|
|
fe.package = font_name
|
|
|
|
|
else:
|
|
|
|
|
fe.package = pkg
|
|
|
|
|
fe.addkey()
|
|
|
|
|
self.font2pkgmap[font_name] = fe
|
|
|
|
|
if fe.pkgkey in self.pkg2fontmap:
|
|
|
|
|
# Repeated the same entry? Check content
|
|
|
|
|
if self.pkg2fontmap[fe.pkgkey] != font_name:
|
|
|
|
|
document.error("Something is wrong in pkgname+options <-> fontname mapping")
|
|
|
|
|
self.pkg2fontmap[fe.pkgkey] = font_name
|
|
|
|
|
self.pkginmap[fe.package] = 1
|
|
|
|
|
|
|
|
|
|
def getfontname(self, pkg, options):
|
2018-08-18 14:18:03 +00:00
|
|
|
|
options.sort()
|
|
|
|
|
pkgkey = createkey(pkg, options)
|
2018-08-20 13:47:49 +00:00
|
|
|
|
if not pkgkey in self.pkg2fontmap:
|
2018-08-18 14:18:03 +00:00
|
|
|
|
return None
|
2018-08-20 13:47:49 +00:00
|
|
|
|
fontname = self.pkg2fontmap[pkgkey]
|
|
|
|
|
if not fontname in self.font2pkgmap:
|
|
|
|
|
document.error("Something is wrong in pkgname+options <-> fontname mapping")
|
2018-08-18 14:18:03 +00:00
|
|
|
|
return None
|
2018-08-20 13:47:49 +00:00
|
|
|
|
if pkgkey == self.font2pkgmap[fontname].pkgkey:
|
2018-08-18 14:18:03 +00:00
|
|
|
|
return fontname
|
|
|
|
|
return None
|
|
|
|
|
|
2018-10-02 15:24:47 +00:00
|
|
|
|
def createFontMapping(fontlist):
|
2018-08-20 13:47:49 +00:00
|
|
|
|
# Create info for known fonts for the use in
|
|
|
|
|
# convert_latexFonts() and
|
|
|
|
|
# revert_latexFonts()
|
|
|
|
|
#
|
|
|
|
|
# * Would be more handy to parse latexFonts file,
|
|
|
|
|
# but the path to this file is unknown
|
|
|
|
|
# * For now, add DejaVu and IBMPlex only.
|
|
|
|
|
# * Expand, if desired
|
|
|
|
|
fm = fontmapping()
|
2018-10-02 15:24:47 +00:00
|
|
|
|
for font in fontlist:
|
|
|
|
|
if font == 'DejaVu':
|
|
|
|
|
fm.expandFontMapping(['DejaVuSerif', 'DejaVuSerifCondensed'], "roman", None, None)
|
|
|
|
|
fm.expandFontMapping(['DejaVuSans','DejaVuSansCondensed'], "sans", "sf", None, "scaled")
|
|
|
|
|
fm.expandFontMapping(['DejaVuSansMono'], "typewriter", "tt", None, "scaled")
|
|
|
|
|
elif font == 'IBM':
|
|
|
|
|
fm.expandFontMapping(['IBMPlexSerif', 'IBMPlexSerifThin,thin',
|
|
|
|
|
'IBMPlexSerifExtraLight,extralight', 'IBMPlexSerifLight,light',
|
|
|
|
|
'IBMPlexSerifSemibold,semibold'],
|
|
|
|
|
"roman", None, "plex-serif")
|
|
|
|
|
fm.expandFontMapping(['IBMPlexSans','IBMPlexSansCondensed,condensed',
|
|
|
|
|
'IBMPlexSansThin,thin', 'IBMPlexSansExtraLight,extralight',
|
|
|
|
|
'IBMPlexSansLight,light', 'IBMPlexSansSemibold,semibold'],
|
|
|
|
|
"sans", "sf", "plex-sans", "scale")
|
|
|
|
|
fm.expandFontMapping(['IBMPlexMono', 'IBMPlexMonoThin,thin',
|
|
|
|
|
'IBMPlexMonoExtraLight,extralight', 'IBMPlexMonoLight,light',
|
|
|
|
|
'IBMPlexMonoSemibold,semibold'],
|
|
|
|
|
"typewriter", "tt", "plex-mono", "scale")
|
|
|
|
|
elif font == 'Adobe':
|
2019-07-13 15:03:25 +00:00
|
|
|
|
fm.expandFontMapping(['ADOBESourceSerifPro'], "roman", None, "sourceserifpro", None, "osf")
|
2019-07-14 07:09:46 +00:00
|
|
|
|
fm.expandFontMapping(['ADOBESourceSansPro'], "sans", "sf", "sourcesanspro", "scaled", "osf")
|
|
|
|
|
fm.expandFontMapping(['ADOBESourceCodePro'], "typewriter", "tt", "sourcecodepro", "scaled", "osf")
|
2019-04-07 09:05:42 +00:00
|
|
|
|
elif font == 'Noto':
|
|
|
|
|
fm.expandFontMapping(['NotoSerifRegular,regular', 'NotoSerifMedium,medium',
|
|
|
|
|
'NotoSerifThin,thin', 'NotoSerifLight,light',
|
|
|
|
|
'NotoSerifExtralight,extralight'],
|
2019-07-13 15:03:25 +00:00
|
|
|
|
"roman", None, "noto-serif", None, "osf")
|
2019-04-07 09:05:42 +00:00
|
|
|
|
fm.expandFontMapping(['NotoSansRegular,regular', 'NotoSansMedium,medium',
|
|
|
|
|
'NotoSansThin,thin', 'NotoSansLight,light',
|
|
|
|
|
'NotoSansExtralight,extralight'],
|
|
|
|
|
"sans", "sf", "noto-sans", "scaled")
|
2019-07-13 15:03:25 +00:00
|
|
|
|
fm.expandFontMapping(['NotoMonoRegular,regular'], "typewriter", "tt", "noto-mono", "scaled")
|
2019-07-14 19:44:58 +00:00
|
|
|
|
elif font == 'Cantarell':
|
|
|
|
|
fm.expandFontMapping(['cantarell,defaultsans'],
|
|
|
|
|
"sans", "sf", "cantarell", "scaled", "oldstyle")
|
2019-07-17 16:03:31 +00:00
|
|
|
|
elif font == 'Chivo':
|
|
|
|
|
fm.expandFontMapping(['ChivoThin,thin', 'ChivoLight,light',
|
|
|
|
|
'Chivo,regular', 'ChivoMedium,medium'],
|
|
|
|
|
"sans", "sf", "Chivo", "scale", "oldstyle")
|
2019-07-18 08:50:46 +00:00
|
|
|
|
elif font == 'CrimsonPro':
|
|
|
|
|
fm.expandFontMapping(['CrimsonPro', 'CrimsonProExtraLight,extralight', 'CrimsonProLight,light',
|
|
|
|
|
'CrimsonProMedium,medium'],
|
|
|
|
|
"roman", None, "CrimsonPro", None, "lf", "true")
|
2019-07-15 11:29:09 +00:00
|
|
|
|
elif font == 'Fira':
|
|
|
|
|
fm.expandFontMapping(['FiraSans', 'FiraSansBook,book',
|
|
|
|
|
'FiraSansThin,thin', 'FiraSansLight,light',
|
|
|
|
|
'FiraSansExtralight,extralight',
|
|
|
|
|
'FiraSansUltralight,ultralight'],
|
|
|
|
|
"sans", "sf", "FiraSans", "scaled", "lf", "true")
|
|
|
|
|
fm.expandFontMapping(['FiraMono'], "typewriter", "tt", "FiraMono", "scaled", "lf", "true")
|
2018-08-20 13:47:49 +00:00
|
|
|
|
return fm
|
|
|
|
|
|
2019-07-15 05:11:43 +00:00
|
|
|
|
def convert_fonts(document, fm, osfoption = "osf"):
|
2019-07-07 21:31:12 +00:00
|
|
|
|
" Handle font definition (LaTeX preamble -> native) "
|
2018-08-18 14:18:03 +00:00
|
|
|
|
|
|
|
|
|
rpkg = re.compile(r'^\\usepackage(\[([^\]]*)\])?\{([^\}]+)\}')
|
|
|
|
|
rscaleopt = re.compile(r'^scaled?=(.*)')
|
2018-08-20 13:47:49 +00:00
|
|
|
|
|
2019-07-15 08:34:19 +00:00
|
|
|
|
# Check whether we go beyond font option feature introduction
|
|
|
|
|
haveFontOpts = document.end_format > 580
|
|
|
|
|
|
2018-08-11 11:04:57 +00:00
|
|
|
|
i = 0
|
|
|
|
|
while i < len(document.preamble):
|
2019-07-07 21:31:12 +00:00
|
|
|
|
i = find_re(document.preamble, rpkg, i+1)
|
2018-08-11 09:45:02 +00:00
|
|
|
|
if i == -1:
|
2018-08-11 11:04:57 +00:00
|
|
|
|
return
|
2018-08-11 09:45:02 +00:00
|
|
|
|
mo = rpkg.search(document.preamble[i])
|
2018-08-18 14:18:03 +00:00
|
|
|
|
if mo == None or mo.group(2) == None:
|
|
|
|
|
options = []
|
|
|
|
|
else:
|
|
|
|
|
options = mo.group(2).replace(' ', '').split(",")
|
2018-08-11 09:45:02 +00:00
|
|
|
|
pkg = mo.group(3)
|
2018-08-18 14:18:03 +00:00
|
|
|
|
o = 0
|
|
|
|
|
oscale = 1
|
2019-07-13 15:03:25 +00:00
|
|
|
|
has_osf = False
|
2018-08-18 14:18:03 +00:00
|
|
|
|
while o < len(options):
|
2019-07-13 15:03:25 +00:00
|
|
|
|
if options[o] == osfoption:
|
|
|
|
|
has_osf = True
|
|
|
|
|
del options[o]
|
|
|
|
|
continue
|
2018-08-18 14:18:03 +00:00
|
|
|
|
mo = rscaleopt.search(options[o])
|
|
|
|
|
if mo == None:
|
|
|
|
|
o += 1
|
|
|
|
|
continue
|
|
|
|
|
oscale = mo.group(1)
|
|
|
|
|
del options[o]
|
2019-07-13 15:03:25 +00:00
|
|
|
|
continue
|
2018-08-18 14:18:03 +00:00
|
|
|
|
|
2018-08-20 13:47:49 +00:00
|
|
|
|
if not pkg in fm.pkginmap:
|
2018-08-18 14:18:03 +00:00
|
|
|
|
continue
|
|
|
|
|
# determine fontname
|
2019-07-15 08:34:19 +00:00
|
|
|
|
fn = None
|
|
|
|
|
if haveFontOpts:
|
|
|
|
|
# Try with name-option combination first
|
|
|
|
|
# (only one default option supported currently)
|
|
|
|
|
o = 0
|
|
|
|
|
while o < len(options):
|
|
|
|
|
opt = options[o]
|
|
|
|
|
fn = fm.getfontname(pkg, [opt])
|
|
|
|
|
if fn != None:
|
|
|
|
|
del options[o]
|
|
|
|
|
break
|
|
|
|
|
o += 1
|
|
|
|
|
continue
|
|
|
|
|
if fn == None:
|
|
|
|
|
fn = fm.getfontname(pkg, [])
|
|
|
|
|
else:
|
|
|
|
|
fn = fm.getfontname(pkg, options)
|
2018-08-18 14:18:03 +00:00
|
|
|
|
if fn == None:
|
2018-08-11 09:45:02 +00:00
|
|
|
|
continue
|
|
|
|
|
del document.preamble[i]
|
2018-08-20 13:47:49 +00:00
|
|
|
|
fontinfo = fm.font2pkgmap[fn]
|
|
|
|
|
if fontinfo.scaletype == None:
|
|
|
|
|
fontscale = None
|
|
|
|
|
else:
|
|
|
|
|
fontscale = "\\font_" + fontinfo.scaletype + "_scale"
|
|
|
|
|
fontinfo.scaleval = oscale
|
2019-07-15 11:29:09 +00:00
|
|
|
|
if (has_osf and fontinfo.osfdef == "false") or (not has_osf and fontinfo.osfdef == "true"):
|
2019-07-15 05:11:43 +00:00
|
|
|
|
if fontinfo.osfopt == None:
|
|
|
|
|
options.extend(osfoption)
|
|
|
|
|
continue
|
|
|
|
|
osf = find_token(document.header, "\\font_osf false")
|
|
|
|
|
osftag = "\\font_osf"
|
|
|
|
|
if osf == -1 and fontinfo.fonttype != "math":
|
|
|
|
|
# Try with newer format
|
|
|
|
|
osftag = "\\font_" + fontinfo.fonttype + "_osf"
|
|
|
|
|
osf = find_token(document.header, osftag + " false")
|
|
|
|
|
if osf != -1:
|
|
|
|
|
document.header[osf] = osftag + " true"
|
2018-08-11 09:45:02 +00:00
|
|
|
|
if i > 0 and document.preamble[i-1] == "% Added by lyx2lyx":
|
|
|
|
|
del document.preamble[i-1]
|
2019-07-07 21:31:12 +00:00
|
|
|
|
i -= 1
|
2018-08-11 09:45:02 +00:00
|
|
|
|
if fontscale != None:
|
|
|
|
|
j = find_token(document.header, fontscale, 0)
|
|
|
|
|
if j != -1:
|
|
|
|
|
val = get_value(document.header, fontscale, j)
|
|
|
|
|
vals = val.split()
|
|
|
|
|
scale = "100"
|
2018-08-18 14:18:03 +00:00
|
|
|
|
if oscale != None:
|
|
|
|
|
scale = "%03d" % int(float(oscale) * 100)
|
2018-08-11 09:45:02 +00:00
|
|
|
|
document.header[j] = fontscale + " " + scale + " " + vals[1]
|
2018-08-20 13:47:49 +00:00
|
|
|
|
ft = "\\font_" + fontinfo.fonttype
|
2018-08-11 09:45:02 +00:00
|
|
|
|
j = find_token(document.header, ft, 0)
|
|
|
|
|
if j != -1:
|
|
|
|
|
val = get_value(document.header, ft, j)
|
2019-01-29 11:35:12 +00:00
|
|
|
|
words = val.split() # ! splits also values like '"DejaVu Sans"'
|
|
|
|
|
words[0] = '"' + fn + '"'
|
|
|
|
|
document.header[j] = ft + ' ' + ' '.join(words)
|
2019-07-15 08:34:19 +00:00
|
|
|
|
if haveFontOpts and fontinfo.fonttype != "math":
|
|
|
|
|
fotag = "\\font_" + fontinfo.fonttype + "_opts"
|
|
|
|
|
fo = find_token(document.header, fotag)
|
|
|
|
|
if fo != -1:
|
|
|
|
|
document.header[fo] = fotag + " \"" + ",".join(options) + "\""
|
|
|
|
|
else:
|
|
|
|
|
# Sensible place to insert tag
|
|
|
|
|
fo = find_token(document.header, "\\font_sf_scale")
|
|
|
|
|
if fo == -1:
|
|
|
|
|
document.warning("Malformed LyX document! Missing \\font_sf_scale")
|
|
|
|
|
else:
|
|
|
|
|
document.header.insert(fo, fotag + " \"" + ",".join(options) + "\"")
|
|
|
|
|
|
|
|
|
|
|
2018-08-11 09:45:02 +00:00
|
|
|
|
|
2019-07-15 04:34:28 +00:00
|
|
|
|
def revert_fonts(document, fm, fontmap, OnlyWithXOpts = False, WithXOpts = False):
|
2018-08-11 09:45:02 +00:00
|
|
|
|
" Revert native font definition to LaTeX "
|
2018-08-18 14:18:03 +00:00
|
|
|
|
# fonlist := list of fonts created from the same package
|
|
|
|
|
# Empty package means that the font-name is the same as the package-name
|
|
|
|
|
# fontmap (key = package, val += found options) will be filled
|
|
|
|
|
# and used later in add_preamble_fonts() to be added to user-preamble
|
2018-08-10 17:38:06 +00:00
|
|
|
|
|
2018-08-20 13:47:49 +00:00
|
|
|
|
rfontscale = re.compile(r'^\s*(\\font_(roman|sans|typewriter|math))\s+')
|
|
|
|
|
rscales = re.compile(r'^\s*(\d+)\s+(\d+)')
|
|
|
|
|
i = 0
|
|
|
|
|
while i < len(document.header):
|
2019-07-07 21:31:12 +00:00
|
|
|
|
i = find_re(document.header, rfontscale, i+1)
|
2018-08-20 13:47:49 +00:00
|
|
|
|
if (i == -1):
|
2019-07-13 15:03:25 +00:00
|
|
|
|
return True
|
2018-08-20 13:47:49 +00:00
|
|
|
|
mo = rfontscale.search(document.header[i])
|
|
|
|
|
if mo == None:
|
|
|
|
|
continue
|
|
|
|
|
ft = mo.group(1) # 'roman', 'sans', 'typewriter', 'math'
|
|
|
|
|
val = get_value(document.header, ft, i)
|
2019-01-29 11:35:12 +00:00
|
|
|
|
words = val.split(' ') # ! splits also values like '"DejaVu Sans"'
|
|
|
|
|
font = words[0].strip('"') # TeX font name has no whitespace
|
2018-08-20 13:47:49 +00:00
|
|
|
|
if not font in fm.font2pkgmap:
|
|
|
|
|
continue
|
|
|
|
|
fontinfo = fm.font2pkgmap[font]
|
|
|
|
|
val = fontinfo.package
|
|
|
|
|
if not val in fontmap:
|
|
|
|
|
fontmap[val] = []
|
2019-07-13 12:55:59 +00:00
|
|
|
|
x = -1
|
2019-07-15 04:34:28 +00:00
|
|
|
|
if OnlyWithXOpts or WithXOpts:
|
2019-07-13 12:55:59 +00:00
|
|
|
|
if ft == "\\font_math":
|
2019-07-13 15:03:25 +00:00
|
|
|
|
return False
|
2019-07-13 12:55:59 +00:00
|
|
|
|
regexp = re.compile(r'^\s*(\\font_roman_opts)\s+')
|
|
|
|
|
if ft == "\\font_sans":
|
|
|
|
|
regexp = re.compile(r'^\s*(\\font_sans_opts)\s+')
|
|
|
|
|
elif ft == "\\font_typewriter":
|
|
|
|
|
regexp = re.compile(r'^\s*(\\font_typewriter_opts)\s+')
|
|
|
|
|
x = find_re(document.header, regexp, 0)
|
2019-07-15 04:34:28 +00:00
|
|
|
|
if x == -1 and OnlyWithXOpts:
|
2019-07-13 15:03:25 +00:00
|
|
|
|
return False
|
2019-07-13 12:55:59 +00:00
|
|
|
|
|
2019-07-15 04:34:28 +00:00
|
|
|
|
if x != -1:
|
|
|
|
|
# We need to use this regex since split() does not handle quote protection
|
|
|
|
|
xopts = re.findall(r'[^"\s]\S*|".+?"', document.header[x])
|
|
|
|
|
opts = xopts[1].strip('"').split(",")
|
|
|
|
|
fontmap[val].extend(opts)
|
|
|
|
|
del document.header[x]
|
2019-01-29 12:21:05 +00:00
|
|
|
|
words[0] = '"default"'
|
2019-01-29 11:35:12 +00:00
|
|
|
|
document.header[i] = ft + ' ' + ' '.join(words)
|
2018-08-20 13:47:49 +00:00
|
|
|
|
if fontinfo.scaleopt != None:
|
|
|
|
|
xval = get_value(document.header, "\\font_" + fontinfo.scaletype + "_scale", 0)
|
|
|
|
|
mo = rscales.search(xval)
|
|
|
|
|
if mo != None:
|
|
|
|
|
xval1 = mo.group(1)
|
|
|
|
|
xval2 = mo.group(2)
|
|
|
|
|
if xval1 != "100":
|
|
|
|
|
# set correct scale option
|
|
|
|
|
fontmap[val].extend([fontinfo.scaleopt + "=" + format(float(xval1) / 100, '.2f')])
|
2019-07-14 07:09:46 +00:00
|
|
|
|
if fontinfo.osfopt != None:
|
2019-07-15 11:29:09 +00:00
|
|
|
|
oldval = "true"
|
|
|
|
|
if fontinfo.osfdef == "true":
|
|
|
|
|
oldval = "false"
|
|
|
|
|
osf = find_token(document.header, "\\font_osf " + oldval)
|
2019-07-15 04:34:28 +00:00
|
|
|
|
if osf == -1 and ft != "\\font_math":
|
|
|
|
|
# Try with newer format
|
2019-07-15 11:29:09 +00:00
|
|
|
|
osftag = "\\font_roman_osf " + oldval
|
2019-07-15 04:34:28 +00:00
|
|
|
|
if ft == "\\font_sans":
|
2019-07-15 11:29:09 +00:00
|
|
|
|
osftag = "\\font_sans_osf " + oldval
|
2019-07-15 04:34:28 +00:00
|
|
|
|
elif ft == "\\font_typewriter":
|
2019-07-15 11:29:09 +00:00
|
|
|
|
osftag = "\\font_typewriter_osf " + oldval
|
2019-07-15 04:34:28 +00:00
|
|
|
|
osf = find_token(document.header, osftag)
|
2019-07-13 15:03:25 +00:00
|
|
|
|
if osf != -1:
|
|
|
|
|
fontmap[val].extend([fontinfo.osfopt])
|
2018-08-20 13:47:49 +00:00
|
|
|
|
if len(fontinfo.options) > 0:
|
|
|
|
|
fontmap[val].extend(fontinfo.options)
|
2019-07-13 15:03:25 +00:00
|
|
|
|
return True
|
2018-08-10 17:38:06 +00:00
|
|
|
|
|
2018-08-11 09:45:02 +00:00
|
|
|
|
###############################################################################
|
|
|
|
|
###
|
|
|
|
|
### Conversion and reversion routines
|
|
|
|
|
###
|
|
|
|
|
###############################################################################
|
|
|
|
|
|
2019-04-16 18:17:32 +00:00
|
|
|
|
def convert_inputencoding_namechange(document):
|
|
|
|
|
" Rename inputencoding settings. "
|
|
|
|
|
i = find_token(document.header, "\\inputencoding", 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
return
|
|
|
|
|
s = document.header[i].replace("auto", "auto-legacy")
|
|
|
|
|
document.header[i] = s.replace("default", "auto-legacy-plain")
|
|
|
|
|
|
|
|
|
|
def revert_inputencoding_namechange(document):
|
|
|
|
|
" Rename inputencoding settings. "
|
|
|
|
|
i = find_token(document.header, "\\inputencoding", 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
return
|
|
|
|
|
s = document.header[i].replace("auto-legacy-plain", "default")
|
|
|
|
|
document.header[i] = s.replace("auto-legacy", "auto")
|
|
|
|
|
|
2019-04-07 09:05:42 +00:00
|
|
|
|
def convert_notoFonts(document):
|
|
|
|
|
" Handle Noto fonts definition to LaTeX "
|
|
|
|
|
|
|
|
|
|
if find_token(document.header, "\\use_non_tex_fonts false", 0) != -1:
|
|
|
|
|
fm = createFontMapping(['Noto'])
|
|
|
|
|
convert_fonts(document, fm)
|
|
|
|
|
|
|
|
|
|
def revert_notoFonts(document):
|
|
|
|
|
" Revert native Noto font definition to LaTeX "
|
|
|
|
|
|
|
|
|
|
if find_token(document.header, "\\use_non_tex_fonts false", 0) != -1:
|
|
|
|
|
fontmap = dict()
|
|
|
|
|
fm = createFontMapping(['Noto'])
|
2019-07-13 15:03:25 +00:00
|
|
|
|
if revert_fonts(document, fm, fontmap):
|
|
|
|
|
add_preamble_fonts(document, fontmap)
|
2019-04-07 09:05:42 +00:00
|
|
|
|
|
2018-08-20 13:47:49 +00:00
|
|
|
|
def convert_latexFonts(document):
|
|
|
|
|
" Handle DejaVu and IBMPlex fonts definition to LaTeX "
|
2018-08-18 14:18:03 +00:00
|
|
|
|
|
2018-08-20 13:47:49 +00:00
|
|
|
|
if find_token(document.header, "\\use_non_tex_fonts false", 0) != -1:
|
2018-10-02 15:24:47 +00:00
|
|
|
|
fm = createFontMapping(['DejaVu', 'IBM'])
|
2018-08-20 13:47:49 +00:00
|
|
|
|
convert_fonts(document, fm)
|
|
|
|
|
|
|
|
|
|
def revert_latexFonts(document):
|
2018-08-11 09:45:02 +00:00
|
|
|
|
" Revert native DejaVu font definition to LaTeX "
|
|
|
|
|
|
2018-08-20 13:47:49 +00:00
|
|
|
|
if find_token(document.header, "\\use_non_tex_fonts false", 0) != -1:
|
|
|
|
|
fontmap = dict()
|
2018-10-02 15:24:47 +00:00
|
|
|
|
fm = createFontMapping(['DejaVu', 'IBM'])
|
2019-07-13 15:03:25 +00:00
|
|
|
|
if revert_fonts(document, fm, fontmap):
|
|
|
|
|
add_preamble_fonts(document, fontmap)
|
2018-10-02 15:24:47 +00:00
|
|
|
|
|
|
|
|
|
def convert_AdobeFonts(document):
|
2019-07-13 15:03:25 +00:00
|
|
|
|
" Handle Adobe Source fonts definition to LaTeX "
|
2018-10-02 15:24:47 +00:00
|
|
|
|
|
|
|
|
|
if find_token(document.header, "\\use_non_tex_fonts false", 0) != -1:
|
|
|
|
|
fm = createFontMapping(['Adobe'])
|
|
|
|
|
convert_fonts(document, fm)
|
|
|
|
|
|
|
|
|
|
def revert_AdobeFonts(document):
|
2019-07-13 15:03:25 +00:00
|
|
|
|
" Revert Adobe Source font definition to LaTeX "
|
2018-10-02 15:24:47 +00:00
|
|
|
|
|
|
|
|
|
if find_token(document.header, "\\use_non_tex_fonts false", 0) != -1:
|
|
|
|
|
fontmap = dict()
|
|
|
|
|
fm = createFontMapping(['Adobe'])
|
2019-07-13 15:03:25 +00:00
|
|
|
|
if revert_fonts(document, fm, fontmap):
|
|
|
|
|
add_preamble_fonts(document, fontmap)
|
2018-08-11 09:45:02 +00:00
|
|
|
|
|
2018-07-30 11:44:01 +00:00
|
|
|
|
def removeFrontMatterStyles(document):
|
2018-08-11 09:45:02 +00:00
|
|
|
|
" Remove styles Begin/EndFrontmatter"
|
2018-07-30 11:44:01 +00:00
|
|
|
|
|
|
|
|
|
layouts = ['BeginFrontmatter', 'EndFrontmatter']
|
2019-07-04 18:49:06 +00:00
|
|
|
|
tokenend = len('\\begin_layout ')
|
|
|
|
|
i = 0
|
|
|
|
|
while True:
|
2019-07-07 21:31:12 +00:00
|
|
|
|
i = find_token_exact(document.body, '\\begin_layout ', i+1)
|
2019-07-04 18:49:06 +00:00
|
|
|
|
if i == -1:
|
|
|
|
|
return
|
|
|
|
|
layout = document.body[i][tokenend:].strip()
|
|
|
|
|
if layout not in layouts:
|
|
|
|
|
continue
|
|
|
|
|
j = find_end_of_layout(document.body, i)
|
|
|
|
|
if j == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Can't find end of layout at line %d" % i)
|
|
|
|
|
continue
|
|
|
|
|
while document.body[j+1].strip() == '':
|
|
|
|
|
j += 1
|
|
|
|
|
document.body[i:j+1] = []
|
2018-07-30 11:44:01 +00:00
|
|
|
|
|
|
|
|
|
def addFrontMatterStyles(document):
|
|
|
|
|
" Use styles Begin/EndFrontmatter for elsarticle"
|
|
|
|
|
|
2019-07-04 18:49:06 +00:00
|
|
|
|
if document.textclass != "elsarticle":
|
|
|
|
|
return
|
|
|
|
|
|
2018-07-30 11:44:01 +00:00
|
|
|
|
def insertFrontmatter(prefix, line):
|
2018-07-31 11:44:48 +00:00
|
|
|
|
above = line
|
|
|
|
|
while above > 0 and document.body[above-1].strip() == '':
|
|
|
|
|
above -= 1
|
|
|
|
|
below = line
|
|
|
|
|
while document.body[below].strip() == '':
|
|
|
|
|
below += 1
|
|
|
|
|
document.body[above:below] = ['', '\\begin_layout ' + prefix + 'Frontmatter',
|
2018-07-30 11:44:01 +00:00
|
|
|
|
'\\begin_inset Note Note',
|
|
|
|
|
'status open', '',
|
|
|
|
|
'\\begin_layout Plain Layout',
|
|
|
|
|
'Keep this empty!',
|
|
|
|
|
'\\end_layout', '',
|
|
|
|
|
'\\end_inset', '', '',
|
2018-07-31 11:44:48 +00:00
|
|
|
|
'\\end_layout', '']
|
2018-07-30 11:44:01 +00:00
|
|
|
|
|
2019-07-04 18:49:06 +00:00
|
|
|
|
layouts = ['Title', 'Title footnote', 'Author', 'Author footnote',
|
|
|
|
|
'Corresponding author', 'Address', 'Email', 'Abstract', 'Keywords']
|
|
|
|
|
tokenend = len('\\begin_layout ')
|
|
|
|
|
first = -1
|
|
|
|
|
i = 0
|
|
|
|
|
while True:
|
2019-07-07 21:31:12 +00:00
|
|
|
|
i = find_token_exact(document.body, '\\begin_layout ', i+1)
|
2019-07-04 18:49:06 +00:00
|
|
|
|
if i == -1:
|
|
|
|
|
break
|
|
|
|
|
layout = document.body[i][tokenend:].strip()
|
|
|
|
|
if layout not in layouts:
|
|
|
|
|
continue
|
|
|
|
|
k = find_end_of_layout(document.body, i)
|
|
|
|
|
if k == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Can't find end of layout at line %d" % i)
|
|
|
|
|
continue
|
2018-07-30 11:44:01 +00:00
|
|
|
|
if first == -1:
|
2019-07-04 18:49:06 +00:00
|
|
|
|
first = i
|
2019-07-07 21:31:12 +00:00
|
|
|
|
i = k
|
2019-07-04 18:49:06 +00:00
|
|
|
|
if first == -1:
|
|
|
|
|
return
|
|
|
|
|
insertFrontmatter('End', k+1)
|
|
|
|
|
insertFrontmatter('Begin', first)
|
|
|
|
|
|
2018-07-30 11:44:01 +00:00
|
|
|
|
|
2018-02-23 07:58:16 +00:00
|
|
|
|
def convert_lst_literalparam(document):
|
|
|
|
|
" Add param literal to include inset "
|
|
|
|
|
|
|
|
|
|
i = 0
|
|
|
|
|
while True:
|
2019-07-07 21:31:12 +00:00
|
|
|
|
i = find_token(document.body, '\\begin_inset CommandInset include', i+1)
|
2018-02-23 07:58:16 +00:00
|
|
|
|
if i == -1:
|
|
|
|
|
break
|
|
|
|
|
j = find_end_of_inset(document.body, i)
|
|
|
|
|
if j == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Can't find end of command inset at line %d" % i)
|
|
|
|
|
continue
|
|
|
|
|
while i < j and document.body[i].strip() != '':
|
|
|
|
|
i += 1
|
2019-07-04 18:49:06 +00:00
|
|
|
|
document.body.insert(i, 'literal "true"')
|
2018-02-23 07:58:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def revert_lst_literalparam(document):
|
|
|
|
|
" Remove param literal from include inset "
|
|
|
|
|
|
|
|
|
|
i = 0
|
|
|
|
|
while True:
|
2019-07-04 18:49:06 +00:00
|
|
|
|
i = find_token(document.body, '\\begin_inset CommandInset include', i+1)
|
2018-02-23 07:58:16 +00:00
|
|
|
|
if i == -1:
|
|
|
|
|
break
|
|
|
|
|
j = find_end_of_inset(document.body, i)
|
|
|
|
|
if j == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Can't find end of include inset at line %d" % i)
|
|
|
|
|
continue
|
2019-07-04 18:49:06 +00:00
|
|
|
|
del_token(document.body, 'literal', i, j)
|
2018-02-23 07:58:16 +00:00
|
|
|
|
|
|
|
|
|
|
2018-03-10 18:59:48 +00:00
|
|
|
|
def revert_paratype(document):
|
|
|
|
|
" Revert ParaType font definitions to LaTeX "
|
|
|
|
|
|
|
|
|
|
if find_token(document.header, "\\use_non_tex_fonts false", 0) != -1:
|
|
|
|
|
preamble = ""
|
|
|
|
|
i1 = find_token(document.header, "\\font_roman \"PTSerif-TLF\"", 0)
|
|
|
|
|
i2 = find_token(document.header, "\\font_sans \"default\"", 0)
|
|
|
|
|
i3 = find_token(document.header, "\\font_typewriter \"default\"", 0)
|
|
|
|
|
j = find_token(document.header, "\\font_sans \"PTSans-TLF\"", 0)
|
2019-07-14 13:08:01 +00:00
|
|
|
|
|
|
|
|
|
sf_scale = 100.0
|
|
|
|
|
sfval = find_token(document.header, "\\font_sf_scale", 0)
|
|
|
|
|
if sfval == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Missing \\font_sf_scale.")
|
|
|
|
|
else:
|
|
|
|
|
sfscale = document.header[sfval].split()
|
|
|
|
|
val = sfscale[1]
|
|
|
|
|
sfscale[1] = "100"
|
|
|
|
|
document.header[sfval] = " ".join(sfscale)
|
|
|
|
|
try:
|
|
|
|
|
# float() can throw
|
|
|
|
|
sf_scale = float(val)
|
|
|
|
|
except:
|
|
|
|
|
document.warning("Invalid font_sf_scale value: " + val)
|
|
|
|
|
|
2018-03-10 18:59:48 +00:00
|
|
|
|
sfoption = ""
|
2019-07-14 13:08:01 +00:00
|
|
|
|
if sf_scale != "100.0":
|
|
|
|
|
sfoption = "scaled=" + str(sf_scale / 100.0)
|
2018-03-10 18:59:48 +00:00
|
|
|
|
k = find_token(document.header, "\\font_typewriter \"PTMono-TLF\"", 0)
|
|
|
|
|
ttval = get_value(document.header, "\\font_tt_scale", 0)
|
|
|
|
|
# cutoff " 100"
|
|
|
|
|
ttval = ttval[:-4]
|
|
|
|
|
ttoption = ""
|
|
|
|
|
if ttval != "100":
|
|
|
|
|
ttoption = "scaled=" + format(float(ttval) / 100, '.2f')
|
|
|
|
|
if i1 != -1 and i2 != -1 and i3!= -1:
|
|
|
|
|
add_to_preamble(document, ["\\usepackage{paratype}"])
|
|
|
|
|
else:
|
2018-07-31 11:44:48 +00:00
|
|
|
|
if i1!= -1:
|
2018-03-10 18:59:48 +00:00
|
|
|
|
add_to_preamble(document, ["\\usepackage{PTSerif}"])
|
2018-03-16 08:02:29 +00:00
|
|
|
|
document.header[i1] = document.header[i1].replace("PTSerif-TLF", "default")
|
2018-07-31 11:44:48 +00:00
|
|
|
|
if j!= -1:
|
2018-03-10 18:59:48 +00:00
|
|
|
|
if sfoption != "":
|
2018-07-01 17:18:38 +00:00
|
|
|
|
add_to_preamble(document, ["\\usepackage[" + sfoption + "]{PTSans}"])
|
2018-03-10 18:59:48 +00:00
|
|
|
|
else:
|
2018-07-01 17:18:38 +00:00
|
|
|
|
add_to_preamble(document, ["\\usepackage{PTSans}"])
|
2018-03-16 08:02:29 +00:00
|
|
|
|
document.header[j] = document.header[j].replace("PTSans-TLF", "default")
|
2018-07-31 11:44:48 +00:00
|
|
|
|
if k!= -1:
|
2018-03-10 18:59:48 +00:00
|
|
|
|
if ttoption != "":
|
2018-07-01 17:18:38 +00:00
|
|
|
|
add_to_preamble(document, ["\\usepackage[" + ttoption + "]{PTMono}"])
|
2018-03-10 18:59:48 +00:00
|
|
|
|
else:
|
2018-07-31 11:44:48 +00:00
|
|
|
|
add_to_preamble(document, ["\\usepackage{PTMono}"])
|
2018-03-16 08:02:29 +00:00
|
|
|
|
document.header[k] = document.header[k].replace("PTMono-TLF", "default")
|
2018-03-10 18:59:48 +00:00
|
|
|
|
|
2018-03-15 14:44:49 +00:00
|
|
|
|
|
|
|
|
|
def revert_xcharter(document):
|
|
|
|
|
" Revert XCharter font definitions to LaTeX "
|
|
|
|
|
|
2018-03-16 08:02:29 +00:00
|
|
|
|
i = find_token(document.header, "\\font_roman \"xcharter\"", 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
# replace unsupported font setting
|
|
|
|
|
document.header[i] = document.header[i].replace("xcharter", "default")
|
|
|
|
|
# no need for preamble code with system fonts
|
|
|
|
|
if get_bool_value(document.header, "\\use_non_tex_fonts"):
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
# transfer old style figures setting to package options
|
|
|
|
|
j = find_token(document.header, "\\font_osf true")
|
|
|
|
|
if j != -1:
|
|
|
|
|
options = "[osf]"
|
|
|
|
|
document.header[j] = "\\font_osf false"
|
|
|
|
|
else:
|
|
|
|
|
options = ""
|
|
|
|
|
if i != -1:
|
|
|
|
|
add_to_preamble(document, ["\\usepackage%s{XCharter}"%options])
|
2018-03-15 14:44:49 +00:00
|
|
|
|
|
|
|
|
|
|
2018-04-18 12:36:49 +00:00
|
|
|
|
def revert_lscape(document):
|
|
|
|
|
" Reverts the landscape environment (Landscape module) to TeX-code "
|
|
|
|
|
|
|
|
|
|
if not "landscape" in document.get_module_list():
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
i = 0
|
|
|
|
|
while True:
|
2019-07-07 21:31:12 +00:00
|
|
|
|
i = find_token(document.body, "\\begin_inset Flex Landscape", i+1)
|
2018-04-18 12:36:49 +00:00
|
|
|
|
if i == -1:
|
|
|
|
|
return
|
|
|
|
|
j = find_end_of_inset(document.body, i)
|
|
|
|
|
if j == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Can't find end of Landscape inset")
|
|
|
|
|
continue
|
|
|
|
|
|
2018-04-18 14:20:19 +00:00
|
|
|
|
if document.body[i] == "\\begin_inset Flex Landscape (Floating)":
|
|
|
|
|
document.body[j - 2 : j + 1] = put_cmd_in_ert("\\end{landscape}}")
|
|
|
|
|
document.body[i : i + 4] = put_cmd_in_ert("\\afterpage{\\begin{landscape}")
|
|
|
|
|
add_to_preamble(document, ["\\usepackage{afterpage}"])
|
|
|
|
|
else:
|
|
|
|
|
document.body[j - 2 : j + 1] = put_cmd_in_ert("\\end{landscape}")
|
|
|
|
|
document.body[i : i + 4] = put_cmd_in_ert("\\begin{landscape}")
|
|
|
|
|
|
2018-04-18 12:36:49 +00:00
|
|
|
|
add_to_preamble(document, ["\\usepackage{pdflscape}"])
|
|
|
|
|
|
|
|
|
|
|
2018-04-22 17:06:46 +00:00
|
|
|
|
def convert_fontenc(document):
|
|
|
|
|
" Convert default fontenc setting "
|
|
|
|
|
|
|
|
|
|
i = find_token(document.header, "\\fontencoding global", 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
document.header[i] = document.header[i].replace("global", "auto")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def revert_fontenc(document):
|
|
|
|
|
" Revert default fontenc setting "
|
|
|
|
|
|
|
|
|
|
i = find_token(document.header, "\\fontencoding auto", 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
document.header[i] = document.header[i].replace("auto", "global")
|
|
|
|
|
|
|
|
|
|
|
2018-05-06 17:48:21 +00:00
|
|
|
|
def revert_nospellcheck(document):
|
|
|
|
|
" Remove nospellcheck font info param "
|
|
|
|
|
|
|
|
|
|
i = 0
|
|
|
|
|
while True:
|
|
|
|
|
i = find_token(document.body, '\\nospellcheck', i)
|
|
|
|
|
if i == -1:
|
|
|
|
|
return
|
|
|
|
|
del document.body[i]
|
|
|
|
|
|
|
|
|
|
|
2018-05-10 18:15:11 +00:00
|
|
|
|
def revert_floatpclass(document):
|
|
|
|
|
" Remove float placement params 'document' and 'class' "
|
|
|
|
|
|
2019-07-07 21:31:12 +00:00
|
|
|
|
del_token(document.header, "\\float_placement class")
|
2018-05-10 18:15:11 +00:00
|
|
|
|
|
|
|
|
|
i = 0
|
|
|
|
|
while True:
|
2019-07-07 21:31:12 +00:00
|
|
|
|
i = find_token(document.body, '\\begin_inset Float', i+1)
|
2018-05-10 18:15:11 +00:00
|
|
|
|
if i == -1:
|
|
|
|
|
break
|
|
|
|
|
j = find_end_of_inset(document.body, i)
|
|
|
|
|
k = find_token(document.body, 'placement class', i, i + 2)
|
|
|
|
|
if k == -1:
|
|
|
|
|
k = find_token(document.body, 'placement document', i, i + 2)
|
|
|
|
|
if k != -1:
|
|
|
|
|
del document.body[k]
|
|
|
|
|
continue
|
|
|
|
|
del document.body[k]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def revert_floatalignment(document):
|
|
|
|
|
" Remove float alignment params "
|
|
|
|
|
|
2019-07-07 21:31:12 +00:00
|
|
|
|
galignment = get_value(document.header, "\\float_alignment", delete=True)
|
2018-05-10 18:15:11 +00:00
|
|
|
|
|
|
|
|
|
i = 0
|
|
|
|
|
while True:
|
2019-07-07 21:31:12 +00:00
|
|
|
|
i = find_token(document.body, '\\begin_inset Float', i+1)
|
2018-05-10 18:15:11 +00:00
|
|
|
|
if i == -1:
|
|
|
|
|
break
|
|
|
|
|
j = find_end_of_inset(document.body, i)
|
|
|
|
|
if j == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Can't find end of inset at line " + str(i))
|
2019-07-07 21:31:12 +00:00
|
|
|
|
continue
|
|
|
|
|
k = find_token(document.body, 'alignment', i, i+4)
|
2018-05-10 18:15:11 +00:00
|
|
|
|
if k == -1:
|
|
|
|
|
i = j
|
|
|
|
|
continue
|
|
|
|
|
alignment = get_value(document.body, "alignment", k)
|
|
|
|
|
if alignment == "document":
|
|
|
|
|
alignment = galignment
|
|
|
|
|
del document.body[k]
|
|
|
|
|
l = find_token(document.body, "\\begin_layout Plain Layout", i, j)
|
|
|
|
|
if l == -1:
|
|
|
|
|
document.warning("Can't find float layout!")
|
|
|
|
|
continue
|
|
|
|
|
alcmd = []
|
|
|
|
|
if alignment == "left":
|
|
|
|
|
alcmd = put_cmd_in_ert("\\raggedright{}")
|
|
|
|
|
elif alignment == "center":
|
|
|
|
|
alcmd = put_cmd_in_ert("\\centering{}")
|
|
|
|
|
elif alignment == "right":
|
|
|
|
|
alcmd = put_cmd_in_ert("\\raggedleft{}")
|
|
|
|
|
if len(alcmd) > 0:
|
|
|
|
|
document.body[l+1:l+1] = alcmd
|
2019-07-07 21:31:12 +00:00
|
|
|
|
i = j
|
2018-05-10 18:15:11 +00:00
|
|
|
|
|
2018-05-21 11:43:16 +00:00
|
|
|
|
def revert_tuftecite(document):
|
|
|
|
|
" Revert \cite commands in tufte classes "
|
|
|
|
|
|
|
|
|
|
tufte = ["tufte-book", "tufte-handout"]
|
|
|
|
|
if document.textclass not in tufte:
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
i = 0
|
|
|
|
|
while (True):
|
2019-07-07 21:31:12 +00:00
|
|
|
|
i = find_token(document.body, "\\begin_inset CommandInset citation", i+1)
|
2018-05-21 11:43:16 +00:00
|
|
|
|
if i == -1:
|
|
|
|
|
break
|
|
|
|
|
j = find_end_of_inset(document.body, i)
|
|
|
|
|
if j == -1:
|
|
|
|
|
document.warning("Can't find end of citation inset at line %d!!" %(i))
|
|
|
|
|
continue
|
|
|
|
|
k = find_token(document.body, "LatexCommand", i, j)
|
|
|
|
|
if k == -1:
|
|
|
|
|
document.warning("Can't find LatexCommand for citation inset at line %d!" %(i))
|
2019-07-07 21:31:12 +00:00
|
|
|
|
i = j
|
2018-05-21 11:43:16 +00:00
|
|
|
|
continue
|
|
|
|
|
cmd = get_value(document.body, "LatexCommand", k)
|
|
|
|
|
if cmd != "cite":
|
2019-07-07 21:31:12 +00:00
|
|
|
|
i = j
|
2018-05-21 11:43:16 +00:00
|
|
|
|
continue
|
|
|
|
|
pre = get_quoted_value(document.body, "before", i, j)
|
|
|
|
|
post = get_quoted_value(document.body, "after", i, j)
|
|
|
|
|
key = get_quoted_value(document.body, "key", i, j)
|
|
|
|
|
if not key:
|
|
|
|
|
document.warning("Citation inset at line %d does not have a key!" %(i))
|
|
|
|
|
key = "???"
|
|
|
|
|
# Replace command with ERT
|
|
|
|
|
res = "\\cite"
|
|
|
|
|
if pre:
|
|
|
|
|
res += "[" + pre + "]"
|
|
|
|
|
if post:
|
|
|
|
|
res += "[" + post + "]"
|
|
|
|
|
elif pre:
|
|
|
|
|
res += "[]"
|
|
|
|
|
res += "{" + key + "}"
|
|
|
|
|
document.body[i:j+1] = put_cmd_in_ert([res])
|
2019-07-07 21:31:12 +00:00
|
|
|
|
i = j
|
2018-05-21 11:43:16 +00:00
|
|
|
|
|
|
|
|
|
|
2018-06-24 08:05:15 +00:00
|
|
|
|
def revert_stretchcolumn(document):
|
|
|
|
|
" We remove the column varwidth flags or everything else will become a mess. "
|
|
|
|
|
i = 0
|
|
|
|
|
while True:
|
2019-07-07 21:31:12 +00:00
|
|
|
|
i = find_token(document.body, "\\begin_inset Tabular", i+1)
|
2018-06-24 08:05:15 +00:00
|
|
|
|
if i == -1:
|
|
|
|
|
return
|
2019-07-07 21:31:12 +00:00
|
|
|
|
j = find_end_of_inset(document.body, i+1)
|
2018-06-24 08:05:15 +00:00
|
|
|
|
if j == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Could not find end of tabular.")
|
|
|
|
|
continue
|
|
|
|
|
for k in range(i, j):
|
|
|
|
|
if re.search('^<column.*varwidth="[^"]+".*>$', document.body[k]):
|
|
|
|
|
document.warning("Converting 'tabularx'/'xltabular' table to normal table.")
|
|
|
|
|
document.body[k] = document.body[k].replace(' varwidth="true"', '')
|
|
|
|
|
|
|
|
|
|
|
2018-07-01 17:18:38 +00:00
|
|
|
|
def revert_vcolumns(document):
|
|
|
|
|
" Revert standard columns with line breaks etc. "
|
|
|
|
|
i = 0
|
|
|
|
|
needvarwidth = False
|
|
|
|
|
needarray = False
|
|
|
|
|
try:
|
|
|
|
|
while True:
|
2019-07-07 21:31:12 +00:00
|
|
|
|
i = find_token(document.body, "\\begin_inset Tabular", i+1)
|
2018-07-01 17:18:38 +00:00
|
|
|
|
if i == -1:
|
|
|
|
|
return
|
|
|
|
|
j = find_end_of_inset(document.body, i)
|
|
|
|
|
if j == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Could not find end of tabular.")
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
# Collect necessary column information
|
|
|
|
|
m = i + 1
|
|
|
|
|
nrows = int(document.body[i+1].split('"')[3])
|
|
|
|
|
ncols = int(document.body[i+1].split('"')[5])
|
|
|
|
|
col_info = []
|
|
|
|
|
for k in range(ncols):
|
|
|
|
|
m = find_token(document.body, "<column", m)
|
|
|
|
|
width = get_option_value(document.body[m], 'width')
|
|
|
|
|
varwidth = get_option_value(document.body[m], 'varwidth')
|
|
|
|
|
alignment = get_option_value(document.body[m], 'alignment')
|
|
|
|
|
special = get_option_value(document.body[m], 'special')
|
|
|
|
|
col_info.append([width, varwidth, alignment, special, m])
|
|
|
|
|
|
|
|
|
|
# Now parse cells
|
|
|
|
|
m = i + 1
|
|
|
|
|
lines = []
|
|
|
|
|
for row in range(nrows):
|
|
|
|
|
for col in range(ncols):
|
|
|
|
|
m = find_token(document.body, "<cell", m)
|
|
|
|
|
multicolumn = get_option_value(document.body[m], 'multicolumn')
|
|
|
|
|
multirow = get_option_value(document.body[m], 'multirow')
|
|
|
|
|
width = get_option_value(document.body[m], 'width')
|
|
|
|
|
rotate = get_option_value(document.body[m], 'rotate')
|
|
|
|
|
# Check for: linebreaks, multipars, non-standard environments
|
|
|
|
|
begcell = m
|
|
|
|
|
endcell = find_token(document.body, "</cell>", begcell)
|
|
|
|
|
vcand = False
|
|
|
|
|
if find_token(document.body, "\\begin_inset Newline", begcell, endcell) != -1:
|
|
|
|
|
vcand = True
|
|
|
|
|
elif count_pars_in_inset(document.body, begcell + 2) > 1:
|
|
|
|
|
vcand = True
|
|
|
|
|
elif get_value(document.body, "\\begin_layout", begcell) != "Plain Layout":
|
|
|
|
|
vcand = True
|
|
|
|
|
if vcand and rotate == "" and ((multicolumn == "" and multirow == "") or width == ""):
|
|
|
|
|
if col_info[col][0] == "" and col_info[col][1] == "" and col_info[col][3] == "":
|
|
|
|
|
needvarwidth = True
|
|
|
|
|
alignment = col_info[col][2]
|
|
|
|
|
col_line = col_info[col][4]
|
|
|
|
|
vval = ""
|
|
|
|
|
if alignment == "center":
|
|
|
|
|
vval = ">{\\centering}"
|
|
|
|
|
elif alignment == "left":
|
|
|
|
|
vval = ">{\\raggedright}"
|
|
|
|
|
elif alignment == "right":
|
|
|
|
|
vval = ">{\\raggedleft}"
|
|
|
|
|
if vval != "":
|
|
|
|
|
needarray = True
|
|
|
|
|
vval += "V{\\linewidth}"
|
2019-01-29 11:35:12 +00:00
|
|
|
|
|
2018-07-01 17:18:38 +00:00
|
|
|
|
document.body[col_line] = document.body[col_line][:-1] + " special=\"" + vval + "\">"
|
|
|
|
|
# ERT newlines and linebreaks (since LyX < 2.4 automatically inserts parboxes
|
|
|
|
|
# with newlines, and we do not want that)
|
|
|
|
|
while True:
|
|
|
|
|
endcell = find_token(document.body, "</cell>", begcell)
|
|
|
|
|
linebreak = False
|
|
|
|
|
nl = find_token(document.body, "\\begin_inset Newline newline", begcell, endcell)
|
|
|
|
|
if nl == -1:
|
|
|
|
|
nl = find_token(document.body, "\\begin_inset Newline linebreak", begcell, endcell)
|
|
|
|
|
if nl == -1:
|
|
|
|
|
break
|
|
|
|
|
linebreak = True
|
|
|
|
|
nle = find_end_of_inset(document.body, nl)
|
|
|
|
|
del(document.body[nle:nle+1])
|
|
|
|
|
if linebreak:
|
|
|
|
|
document.body[nl:nl+1] = put_cmd_in_ert("\\linebreak{}")
|
|
|
|
|
else:
|
|
|
|
|
document.body[nl:nl+1] = put_cmd_in_ert("\\\\")
|
|
|
|
|
m += 1
|
|
|
|
|
|
2019-07-07 21:31:12 +00:00
|
|
|
|
i = j
|
2018-07-01 17:18:38 +00:00
|
|
|
|
|
|
|
|
|
finally:
|
|
|
|
|
if needarray == True:
|
|
|
|
|
add_to_preamble(document, ["\\usepackage{array}"])
|
|
|
|
|
if needvarwidth == True:
|
|
|
|
|
add_to_preamble(document, ["\\usepackage{varwidth}"])
|
|
|
|
|
|
|
|
|
|
|
2018-07-07 13:25:35 +00:00
|
|
|
|
def revert_bibencoding(document):
|
|
|
|
|
" Revert bibliography encoding "
|
|
|
|
|
|
|
|
|
|
# Get cite engine
|
|
|
|
|
engine = "basic"
|
|
|
|
|
i = find_token(document.header, "\\cite_engine", 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
document.warning("Malformed document! Missing \\cite_engine")
|
|
|
|
|
else:
|
|
|
|
|
engine = get_value(document.header, "\\cite_engine", i)
|
|
|
|
|
|
|
|
|
|
# Check if biblatex
|
|
|
|
|
biblatex = False
|
|
|
|
|
if engine in ["biblatex", "biblatex-natbib"]:
|
|
|
|
|
biblatex = True
|
|
|
|
|
|
2019-01-29 11:35:12 +00:00
|
|
|
|
# Map lyx to latex encoding names
|
2018-07-07 13:25:35 +00:00
|
|
|
|
encodings = {
|
|
|
|
|
"utf8" : "utf8",
|
|
|
|
|
"utf8x" : "utf8x",
|
|
|
|
|
"armscii8" : "armscii8",
|
|
|
|
|
"iso8859-1" : "latin1",
|
|
|
|
|
"iso8859-2" : "latin2",
|
|
|
|
|
"iso8859-3" : "latin3",
|
|
|
|
|
"iso8859-4" : "latin4",
|
|
|
|
|
"iso8859-5" : "iso88595",
|
|
|
|
|
"iso8859-6" : "8859-6",
|
|
|
|
|
"iso8859-7" : "iso-8859-7",
|
|
|
|
|
"iso8859-8" : "8859-8",
|
|
|
|
|
"iso8859-9" : "latin5",
|
|
|
|
|
"iso8859-13" : "latin7",
|
|
|
|
|
"iso8859-15" : "latin9",
|
|
|
|
|
"iso8859-16" : "latin10",
|
|
|
|
|
"applemac" : "applemac",
|
|
|
|
|
"cp437" : "cp437",
|
|
|
|
|
"cp437de" : "cp437de",
|
|
|
|
|
"cp850" : "cp850",
|
|
|
|
|
"cp852" : "cp852",
|
|
|
|
|
"cp855" : "cp855",
|
|
|
|
|
"cp858" : "cp858",
|
|
|
|
|
"cp862" : "cp862",
|
|
|
|
|
"cp865" : "cp865",
|
|
|
|
|
"cp866" : "cp866",
|
|
|
|
|
"cp1250" : "cp1250",
|
|
|
|
|
"cp1251" : "cp1251",
|
|
|
|
|
"cp1252" : "cp1252",
|
|
|
|
|
"cp1255" : "cp1255",
|
|
|
|
|
"cp1256" : "cp1256",
|
|
|
|
|
"cp1257" : "cp1257",
|
|
|
|
|
"koi8-r" : "koi8-r",
|
|
|
|
|
"koi8-u" : "koi8-u",
|
|
|
|
|
"pt154" : "pt154",
|
|
|
|
|
"utf8-platex" : "utf8",
|
|
|
|
|
"ascii" : "ascii"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
i = 0
|
|
|
|
|
bibresources = []
|
|
|
|
|
while (True):
|
2019-07-07 21:31:12 +00:00
|
|
|
|
i = find_token(document.body, "\\begin_inset CommandInset bibtex", i+1)
|
2018-07-07 13:25:35 +00:00
|
|
|
|
if i == -1:
|
|
|
|
|
break
|
|
|
|
|
j = find_end_of_inset(document.body, i)
|
|
|
|
|
if j == -1:
|
|
|
|
|
document.warning("Can't find end of bibtex inset at line %d!!" %(i))
|
|
|
|
|
continue
|
|
|
|
|
encoding = get_quoted_value(document.body, "encoding", i, j)
|
|
|
|
|
if not encoding:
|
|
|
|
|
continue
|
|
|
|
|
# remove encoding line
|
|
|
|
|
k = find_token(document.body, "encoding", i, j)
|
|
|
|
|
if k != -1:
|
|
|
|
|
del document.body[k]
|
2019-03-29 14:45:55 +00:00
|
|
|
|
if encoding == "default":
|
|
|
|
|
continue
|
2018-07-07 13:25:35 +00:00
|
|
|
|
# Re-find inset end line
|
|
|
|
|
j = find_end_of_inset(document.body, i)
|
|
|
|
|
if biblatex:
|
|
|
|
|
biblio_options = ""
|
|
|
|
|
h = find_token(document.header, "\\biblio_options", 0)
|
|
|
|
|
if h != -1:
|
|
|
|
|
biblio_options = get_value(document.header, "\\biblio_options", h)
|
|
|
|
|
if not "bibencoding" in biblio_options:
|
|
|
|
|
document.header[h] += ",bibencoding=%s" % encodings[encoding]
|
|
|
|
|
else:
|
|
|
|
|
bs = find_token(document.header, "\\biblatex_bibstyle", 0)
|
|
|
|
|
if bs == -1:
|
|
|
|
|
# this should not happen
|
|
|
|
|
document.warning("Malformed LyX document! No \\biblatex_bibstyle header found!")
|
|
|
|
|
else:
|
|
|
|
|
document.header[bs-1 : bs-1] = ["\\biblio_options bibencoding=" + encodings[encoding]]
|
|
|
|
|
else:
|
|
|
|
|
document.body[j+1:j+1] = put_cmd_in_ert("\\egroup")
|
|
|
|
|
document.body[i:i] = put_cmd_in_ert("\\bgroup\\inputencoding{" + encodings[encoding] + "}")
|
|
|
|
|
|
2019-07-07 21:31:12 +00:00
|
|
|
|
i = j
|
2018-07-07 13:25:35 +00:00
|
|
|
|
|
|
|
|
|
|
2018-07-29 17:41:34 +00:00
|
|
|
|
|
|
|
|
|
def convert_vcsinfo(document):
|
|
|
|
|
" Separate vcs Info inset from buffer Info inset. "
|
|
|
|
|
|
|
|
|
|
types = {
|
|
|
|
|
"vcs-revision" : "revision",
|
|
|
|
|
"vcs-tree-revision" : "tree-revision",
|
|
|
|
|
"vcs-author" : "author",
|
|
|
|
|
"vcs-time" : "time",
|
|
|
|
|
"vcs-date" : "date"
|
|
|
|
|
}
|
|
|
|
|
i = 0
|
|
|
|
|
while True:
|
2019-07-07 21:31:12 +00:00
|
|
|
|
i = find_token(document.body, "\\begin_inset Info", i+1)
|
2018-07-29 17:41:34 +00:00
|
|
|
|
if i == -1:
|
|
|
|
|
return
|
2019-07-07 21:31:12 +00:00
|
|
|
|
j = find_end_of_inset(document.body, i+1)
|
2018-07-29 17:41:34 +00:00
|
|
|
|
if j == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Could not find end of Info inset.")
|
|
|
|
|
continue
|
|
|
|
|
tp = find_token(document.body, 'type', i, j)
|
|
|
|
|
tpv = get_quoted_value(document.body, "type", tp)
|
|
|
|
|
if tpv != "buffer":
|
|
|
|
|
continue
|
|
|
|
|
arg = find_token(document.body, 'arg', i, j)
|
|
|
|
|
argv = get_quoted_value(document.body, "arg", arg)
|
|
|
|
|
if argv not in list(types.keys()):
|
|
|
|
|
continue
|
|
|
|
|
document.body[tp] = "type \"vcs\""
|
|
|
|
|
document.body[arg] = "arg \"" + types[argv] + "\""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def revert_vcsinfo(document):
|
|
|
|
|
" Merge vcs Info inset to buffer Info inset. "
|
|
|
|
|
|
|
|
|
|
args = ["revision", "tree-revision", "author", "time", "date" ]
|
|
|
|
|
i = 0
|
|
|
|
|
while True:
|
2019-07-07 21:31:12 +00:00
|
|
|
|
i = find_token(document.body, "\\begin_inset Info", i+1)
|
2018-07-29 17:41:34 +00:00
|
|
|
|
if i == -1:
|
|
|
|
|
return
|
2019-07-07 21:31:12 +00:00
|
|
|
|
j = find_end_of_inset(document.body, i+1)
|
2018-07-29 17:41:34 +00:00
|
|
|
|
if j == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Could not find end of Info inset.")
|
|
|
|
|
continue
|
|
|
|
|
tp = find_token(document.body, 'type', i, j)
|
|
|
|
|
tpv = get_quoted_value(document.body, "type", tp)
|
|
|
|
|
if tpv != "vcs":
|
|
|
|
|
continue
|
|
|
|
|
arg = find_token(document.body, 'arg', i, j)
|
|
|
|
|
argv = get_quoted_value(document.body, "arg", arg)
|
|
|
|
|
if argv not in args:
|
|
|
|
|
document.warning("Malformed Info inset. Invalid vcs arg.")
|
|
|
|
|
continue
|
|
|
|
|
document.body[tp] = "type \"buffer\""
|
|
|
|
|
document.body[arg] = "arg \"vcs-" + argv + "\""
|
|
|
|
|
|
2019-07-28 20:01:17 +00:00
|
|
|
|
def revert_vcsinfo_rev_abbrev(document):
|
|
|
|
|
" Convert abbreviated revisions to regular revisions. "
|
|
|
|
|
|
|
|
|
|
i = 0
|
|
|
|
|
while True:
|
|
|
|
|
i = find_token(document.body, "\\begin_inset Info", i+1)
|
|
|
|
|
if i == -1:
|
|
|
|
|
return
|
|
|
|
|
j = find_end_of_inset(document.body, i+1)
|
|
|
|
|
if j == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Could not find end of Info inset.")
|
|
|
|
|
continue
|
|
|
|
|
tp = find_token(document.body, 'type', i, j)
|
|
|
|
|
tpv = get_quoted_value(document.body, "type", tp)
|
|
|
|
|
if tpv != "vcs":
|
|
|
|
|
continue
|
|
|
|
|
arg = find_token(document.body, 'arg', i, j)
|
|
|
|
|
argv = get_quoted_value(document.body, "arg", arg)
|
|
|
|
|
if( argv == "revision-abbrev" ):
|
|
|
|
|
document.body[arg] = "arg \"revision\""
|
2018-07-29 17:41:34 +00:00
|
|
|
|
|
2018-08-05 07:51:12 +00:00
|
|
|
|
def revert_dateinfo(document):
|
|
|
|
|
" Revert date info insets to static text. "
|
|
|
|
|
|
|
|
|
|
# FIXME This currently only considers the main language and uses the system locale
|
|
|
|
|
# Ideally, it should honor context languages and switch the locale accordingly.
|
|
|
|
|
|
|
|
|
|
# The date formats for each language using strftime syntax:
|
|
|
|
|
# long, short, loclong, locmedium, locshort
|
|
|
|
|
dateformats = {
|
|
|
|
|
"afrikaans" : ["%A, %d %B %Y", "%Y-%m-%d", "%d %B %Y", "%d %b %Y", "%Y/%m/%d"],
|
|
|
|
|
"albanian" : ["%A, %d %B %Y", "%d.%m.%y", "%d %B %Y", "%d %b %Y", "%d/%m/%Y"],
|
|
|
|
|
"american" : ["%A, %B %d, %Y", "%m/%d/%y", "%B %d, %Y", "%b %d, %Y", "%m/%d/%Y"],
|
|
|
|
|
"amharic" : ["%A ፣%d %B %Y", "%d/%m/%Y", "%d %B %Y", "%d %b %Y", "%d/%m/%Y"],
|
|
|
|
|
"ancientgreek" : ["%A, %d %B %Y", "%d %b %Y", "%d %B %Y", "%d %b %Y", "%d/%m/%Y"],
|
|
|
|
|
"arabic_arabi" : ["%A، %d %B، %Y", "%d/%m/%Y", "%d %B، %Y", "%d/%m/%Y", "%d/%m/%Y"],
|
|
|
|
|
"arabic_arabtex" : ["%A، %d %B، %Y", "%d/%m/%Y", "%d %B، %Y", "%d/%m/%Y", "%d/%m/%Y"],
|
|
|
|
|
"armenian" : ["%Y թ. %B %d, %A", "%d.%m.%y", "%d %B، %Y", "%d %b، %Y", "%d/%m/%Y"],
|
|
|
|
|
"asturian" : ["%A, %d %B de %Y", "%d/%m/%y", "%d de %B de %Y", "%d %b %Y", "%d/%m/%Y"],
|
|
|
|
|
"australian" : ["%A, %d %B %Y", "%d/%m/%y", "%d %B %Y", "%d %b %Y", "%d/%m/%Y"],
|
|
|
|
|
"austrian" : ["%A, %d. %B %Y", "%d.%m.%y", "%d. %B %Y", "%d. %b %Y", "%d.%m.%Y"],
|
|
|
|
|
"bahasa" : ["%A, %d %B %Y", "%d/%m/%y", "%d %B %Y", "%d %b %Y", "%d/%m/%Y"],
|
|
|
|
|
"bahasam" : ["%A, %d %B %Y", "%d/%m/%y", "%d %B %Y", "%d %b %Y", "%d/%m/%Y"],
|
|
|
|
|
"basque" : ["%Y(e)ko %B %d, %A", "%y/%m/%d", "%Y %B %d", "%Y %b %d", "%Y/%m/%d"],
|
|
|
|
|
"belarusian" : ["%A, %d %B %Y г.", "%d.%m.%y", "%d %B %Y", "%d %b %Y", "%d.%m.%Y"],
|
|
|
|
|
"bosnian" : ["%A, %d. %B %Y.", "%d.%m.%y.", "%d. %B %Y", "%d. %b %Y", "%Y-%m-%d"],
|
|
|
|
|
"brazilian" : ["%A, %d de %B de %Y", "%d/%m/%Y", "%d de %B de %Y", "%d de %b de %Y", "%d/%m/%Y"],
|
|
|
|
|
"breton" : ["%Y %B %d, %A", "%Y-%m-%d", "%d %B %Y", "%d %b %Y", "%Y-%m-%d"],
|
|
|
|
|
"british" : ["%A, %d %B %Y", "%d/%m/%Y", "%d %B %Y", "%d %b %Y", "%d/%m/%Y"],
|
|
|
|
|
"bulgarian" : ["%A, %d %B %Y г.", "%d.%m.%y г.", "%d %B %Y", "%d %b %Y", "%Y-%m-%d"],
|
|
|
|
|
"canadian" : ["%A, %B %d, %Y", "%Y-%m-%d", "%B %d, %Y", "%d %b %Y", "%Y-%m-%d"],
|
|
|
|
|
"canadien" : ["%A %d %B %Y", "%y-%m-%d", "%d %B %Y", "%d %b %Y", "%Y-%m-%d"],
|
|
|
|
|
"catalan" : ["%A, %d %B de %Y", "%d/%m/%y", "%d / %B / %Y", "%d / %b / %Y", "%d/%m/%Y"],
|
|
|
|
|
"chinese-simplified" : ["%Y年%m月%d日%A", "%Y/%m/%d", "%Y年%m月%d日", "%Y-%m-%d", "%y-%m-%d"],
|
|
|
|
|
"chinese-traditional" : ["%Y年%m月%d日 %A", "%Y/%m/%d", "%Y年%m月%d日", "%Y年%m月%d日", "%y年%m月%d日"],
|
|
|
|
|
"coptic" : ["%A, %d %B %Y", "%d %b %Y", "%B %d, %Y", "%b %d, %Y", "%m/%d/%Y"],
|
|
|
|
|
"croatian" : ["%A, %d. %B %Y.", "%d. %m. %Y.", "%d. %B %Y.", "%d. %b. %Y.", "%d.%m.%Y."],
|
|
|
|
|
"czech" : ["%A %d. %B %Y", "%d.%m.%y", "%d. %B %Y", "%d. %b. %Y", "%d.%m.%Y"],
|
|
|
|
|
"danish" : ["%A den %d. %B %Y", "%d/%m/%Y", "%d. %B %Y", "%d. %b %Y", "%d/%m/%Y"],
|
|
|
|
|
"divehi" : ["%Y %B %d, %A", "%Y-%m-%d", "%Y %B %d", "%Y %b %d", "%d/%m/%Y"],
|
|
|
|
|
"dutch" : ["%A %d %B %Y", "%d-%m-%y", "%d %B %Y", "%d %b %Y", "%d-%m-%Y"],
|
|
|
|
|
"english" : ["%A, %B %d, %Y", "%m/%d/%y", "%B %d, %Y", "%b %d, %Y", "%m/%d/%Y"],
|
|
|
|
|
"esperanto" : ["%A, %d %B %Y", "%d %b %Y", "la %d de %B %Y", "la %d de %b %Y", "%m/%d/%Y"],
|
|
|
|
|
"estonian" : ["%A, %d. %B %Y", "%d.%m.%y", "%d %B %Y", "%d %b %Y", "%d.%m.%Y"],
|
|
|
|
|
"farsi" : ["%A %d %B %Y", "%Y/%m/%d", "%d %B %Y", "%d %b %Y", "%Y/%m/%d"],
|
|
|
|
|
"finnish" : ["%A %d. %B %Y", "%d.%m.%Y", "%d. %B %Y", "%d. %b %Y", "%d.%m.%Y"],
|
|
|
|
|
"french" : ["%A %d %B %Y", "%d/%m/%Y", "%d %B %Y", "%d %b %Y", "%d/%m/%Y"],
|
|
|
|
|
"friulan" : ["%A %d di %B dal %Y", "%d/%m/%y", "%d di %B dal %Y", "%d di %b dal %Y", "%d/%m/%Y"],
|
|
|
|
|
"galician" : ["%A, %d de %B de %Y", "%d/%m/%y", "%d de %B de %Y", "%d de %b de %Y", "%d/%m/%Y"],
|
|
|
|
|
"georgian" : ["%A, %d %B, %Y", "%d.%m.%y", "%B %d, %Y", "%b %d, %Y", "%m/%d/%Y"],
|
|
|
|
|
"german" : ["%A, %d. %B %Y", "%d.%m.%y", "%d. %B %Y", "%d. %b %Y", "%d.%m.%Y"],
|
|
|
|
|
"german-ch" : ["%A, %d. %B %Y", "%d.%m.%y", "%d. %B %Y", "%d. %b %Y", "%d.%m.%Y"],
|
|
|
|
|
"german-ch-old" : ["%A, %d. %B %Y", "%d.%m.%y", "%d. %B %Y", "%d. %b %Y", "%d.%m.%Y"],
|
|
|
|
|
"greek" : ["%A, %d %B %Y", "%d/%m/%y", "%d %B %Y", "%d %b %Y", "%d/%m/%Y"],
|
|
|
|
|
"hebrew" : ["%A, %d ב%B %Y", "%d.%m.%Y", "%d %B %Y", "%d %b %Y", "%d/%m/%Y"],
|
|
|
|
|
"hindi" : ["%A, %d %B %Y", "%d/%m/%y", "%d %B %Y", "%d %b %Y", "%d-%m-%Y"],
|
|
|
|
|
"icelandic" : ["%A, %d. %B %Y", "%d.%m.%Y", "%d. %B %Y", "%d. %b %Y", "%d.%m.%Y"],
|
|
|
|
|
"interlingua" : ["%Y %B %d, %A", "%Y-%m-%d", "le %d de %B %Y", "le %d de %b %Y", "%Y-%m-%d"],
|
|
|
|
|
"irish" : ["%A %d %B %Y", "%d/%m/%Y", "%d. %B %Y", "%d. %b %Y", "%d/%m/%Y"],
|
|
|
|
|
"italian" : ["%A %d %B %Y", "%d/%m/%y", "%d %B %Y", "%d/%b/%Y", "%d/%m/%Y"],
|
|
|
|
|
"japanese" : ["%Y年%m月%d日%A", "%Y/%m/%d", "%Y年%m月%d日", "%Y/%m/%d", "%y/%m/%d"],
|
|
|
|
|
"japanese-cjk" : ["%Y年%m月%d日%A", "%Y/%m/%d", "%Y年%m月%d日", "%Y/%m/%d", "%y/%m/%d"],
|
|
|
|
|
"kannada" : ["%A, %B %d, %Y", "%d/%m/%y", "%d %B %Y", "%d %B %Y", "%d-%m-%Y"],
|
|
|
|
|
"kazakh" : ["%Y ж. %d %B, %A", "%d.%m.%y", "%d %B %Y", "%d %B %Y", "%Y-%d-%m"],
|
|
|
|
|
"khmer" : ["%A %d %B %Y", "%d/%m/%y", "%d %B %Y", "%d %B %Y", "%d/%m/%Y"],
|
|
|
|
|
"korean" : ["%Y년 %m월 %d일 %A", "%y. %m. %d.", "%Y년 %m월 %d일", "%Y. %m. %d.", "%y. %m. %d."],
|
|
|
|
|
"kurmanji" : ["%A, %d %B %Y", "%d %b %Y", "%d. %B %Y", "%d. %m. %Y", "%Y-%m-%d"],
|
|
|
|
|
"lao" : ["%A ທີ %d %B %Y", "%d/%m/%Y", "%d %B %Y", "%d %B %Y", "%d/%m/%Y"],
|
|
|
|
|
"latin" : ["%A, %d %B %Y", "%d %b %Y", "%B %d, %Y", "%b %d, %Y", "%m/%d/%Y"],
|
|
|
|
|
"latvian" : ["%A, %Y. gada %d. %B", "%d.%m.%y", "%Y. gada %d. %B", "%Y. gada %d. %b", "%d.%m.%Y"],
|
|
|
|
|
"lithuanian" : ["%Y m. %B %d d., %A", "%Y-%m-%d", "%Y m. %B %d d.", "%Y m. %B %d d.", "%Y-%m-%d"],
|
|
|
|
|
"lowersorbian" : ["%A, %d. %B %Y", "%d.%m.%y", "%d %B %Y", "%d %b %Y", "%d.%m.%Y"],
|
|
|
|
|
"macedonian" : ["%A, %d %B %Y", "%d.%m.%y", "%d %B %Y", "%d %b %Y", "%d.%m.%Y"],
|
|
|
|
|
"magyar" : ["%Y. %B %d., %A", "%Y. %m. %d.", "%Y. %B %d.", "%Y. %b %d.", "%Y.%m.%d."],
|
2019-03-10 09:21:59 +00:00
|
|
|
|
"malayalam" : ["%A, %d %B, %Y", "%d/%m/%y", "%d %B %Y", "%d %b %Y", "%d-%m-%Y"],
|
2018-08-05 07:51:12 +00:00
|
|
|
|
"marathi" : ["%A, %d %B, %Y", "%d/%m/%y", "%d %B %Y", "%d %b %Y", "%d-%m-%Y"],
|
|
|
|
|
"mongolian" : ["%A, %Y оны %m сарын %d", "%Y-%m-%d", "%Y оны %m сарын %d", "%d-%m-%Y", "%d-%m-%Y"],
|
|
|
|
|
"naustrian" : ["%A, %d. %B %Y", "%d.%m.%y", "%d. %B %Y", "%d. %b %Y", "%d.%m.%Y"],
|
|
|
|
|
"newzealand" : ["%A, %d %B %Y", "%d/%m/%y", "%d %B %Y", "%d %b %Y", "%d/%m/%Y"],
|
|
|
|
|
"ngerman" : ["%A, %d. %B %Y", "%d.%m.%y", "%d. %B %Y", "%d. %b %Y", "%d.%m.%Y"],
|
|
|
|
|
"norsk" : ["%A %d. %B %Y", "%d.%m.%Y", "%d. %B %Y", "%d. %b %Y", "%d.%m.%Y"],
|
|
|
|
|
"nynorsk" : ["%A %d. %B %Y", "%d.%m.%Y", "%d. %B %Y", "%d. %b %Y", "%d.%m.%Y"],
|
|
|
|
|
"occitan" : ["%Y %B %d, %A", "%Y-%m-%d", "%d %B %Y", "%d %b %Y", "%d/%m/%Y"],
|
|
|
|
|
"piedmontese" : ["%A, %d %B %Y", "%d %b %Y", "%B %d, %Y", "%b %d, %Y", "%m/%d/%Y"],
|
|
|
|
|
"polish" : ["%A, %d %B %Y", "%d.%m.%Y", "%d %B %Y", "%d %b %Y", "%Y-%m-%d"],
|
|
|
|
|
"polutonikogreek" : ["%A, %d %B %Y", "%d/%m/%y", "%d %B %Y", "%d %b %Y", "%d/%m/%Y"],
|
|
|
|
|
"portuguese" : ["%A, %d de %B de %Y", "%d/%m/%y", "%d de %B de %Y", "%d de %b de %Y", "%Y/%m/%d"],
|
|
|
|
|
"romanian" : ["%A, %d %B %Y", "%d.%m.%Y", "%d %B %Y", "%d %b %Y", "%d.%m.%Y"],
|
|
|
|
|
"romansh" : ["%A, ils %d da %B %Y", "%d-%m-%y", "%d %B %Y", "%d %b %Y", "%d.%m.%Y"],
|
|
|
|
|
"russian" : ["%A, %d %B %Y г.", "%d.%m.%Y", "%d %B %Y г.", "%d %b %Y г.", "%d.%m.%Y"],
|
|
|
|
|
"samin" : ["%Y %B %d, %A", "%Y-%m-%d", "%B %d. b. %Y", "%b %d. b. %Y", "%d.%m.%Y"],
|
|
|
|
|
"sanskrit" : ["%Y %B %d, %A", "%Y-%m-%d", "%d %B %Y", "%d %b %Y", "%d-%m-%Y"],
|
|
|
|
|
"scottish" : ["%A, %dmh %B %Y", "%d/%m/%Y", "%d %B %Y", "%d %b %Y", "%d/%m/%Y"],
|
|
|
|
|
"serbian" : ["%A, %d. %B %Y.", "%d.%m.%y.", "%d. %B %Y", "%d. %b %Y", "%d.%m.%Y"],
|
|
|
|
|
"serbian-latin" : ["%A, %d. %B %Y.", "%d.%m.%y.", "%d. %B %Y", "%d. %b %Y", "%d.%m.%Y"],
|
|
|
|
|
"slovak" : ["%A, %d. %B %Y", "%d. %m. %Y", "%d. %B %Y", "%d. %b %Y", "%d.%m.%Y"],
|
|
|
|
|
"slovene" : ["%A, %d. %B %Y", "%d. %m. %y", "%d. %B %Y", "%d. %b %Y", "%d.%m.%Y"],
|
|
|
|
|
"spanish" : ["%A, %d de %B de %Y", "%d/%m/%y", "%d de %B %de %Y", "%d %b %Y", "%d/%m/%Y"],
|
|
|
|
|
"spanish-mexico" : ["%A, %d de %B %de %Y", "%d/%m/%y", "%d de %B de %Y", "%d %b %Y", "%d/%m/%Y"],
|
|
|
|
|
"swedish" : ["%A %d %B %Y", "%Y-%m-%d", "%d %B %Y", "%d %b %Y", "%Y-%m-%d"],
|
|
|
|
|
"syriac" : ["%Y %B %d, %A", "%Y-%m-%d", "%d %B %Y", "%d %b %Y", "%d/%m/%Y"],
|
|
|
|
|
"tamil" : ["%A, %d %B, %Y", "%d/%m/%y", "%d %B %Y", "%d %b %Y", "%d-%m-%Y"],
|
|
|
|
|
"telugu" : ["%d, %B %Y, %A", "%d-%m-%y", "%d %B %Y", "%d %b %Y", "%d-%m-%Y"],
|
|
|
|
|
"thai" : ["%Aที่ %d %B %Y", "%d/%m/%y", "%d %B %Y", "%d %b %Y", "%d/%m/%Y"],
|
|
|
|
|
"tibetan" : ["%Y %Bའི་ཚེས་%d, %A", "%Y-%m-%d", "%B %d, %Y", "%b %d, %Y", "%m/%d/%Y"],
|
|
|
|
|
"turkish" : ["%d %B %Y %A", "%d.%m.%Y", "%d %B %Y", "%d.%b.%Y", "%d.%m.%Y"],
|
|
|
|
|
"turkmen" : ["%d %B %Y %A", "%d.%m.%Y", "%Y ý. %B %d", "%d.%m.%Y ý.", "%d.%m.%y ý."],
|
|
|
|
|
"ukrainian" : ["%A, %d %B %Y р.", "%d.%m.%y", "%d %B %Y", "%d %m %Y", "%d.%m.%Y"],
|
|
|
|
|
"uppersorbian" : ["%A, %d. %B %Y", "%d.%m.%y", "%d %B %Y", "%d %b %Y", "%d.%m.%Y"],
|
|
|
|
|
"urdu" : ["%A، %d %B، %Y", "%d/%m/%y", "%d %B, %Y", "%d %b %Y", "%d/%m/%Y"],
|
|
|
|
|
"vietnamese" : ["%A, %d %B, %Y", "%d/%m/%Y", "%d tháng %B %Y", "%d-%m-%Y", "%d/%m/%Y"],
|
|
|
|
|
"welsh" : ["%A, %d %B %Y", "%d/%m/%y", "%d %B %Y", "%d %b %Y", "%d/%m/%Y"],
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
types = ["date", "fixdate", "moddate" ]
|
2019-05-15 15:32:09 +00:00
|
|
|
|
lang = get_value(document.header, "\\language")
|
|
|
|
|
if lang == "":
|
2018-08-05 07:51:12 +00:00
|
|
|
|
document.warning("Malformed LyX document! No \\language header found!")
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
i = 0
|
|
|
|
|
while True:
|
2019-07-07 21:31:12 +00:00
|
|
|
|
i = find_token(document.body, "\\begin_inset Info", i+1)
|
2018-08-05 07:51:12 +00:00
|
|
|
|
if i == -1:
|
|
|
|
|
return
|
2019-07-07 21:31:12 +00:00
|
|
|
|
j = find_end_of_inset(document.body, i+1)
|
2018-08-05 07:51:12 +00:00
|
|
|
|
if j == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Could not find end of Info inset.")
|
|
|
|
|
continue
|
|
|
|
|
tp = find_token(document.body, 'type', i, j)
|
|
|
|
|
tpv = get_quoted_value(document.body, "type", tp)
|
|
|
|
|
if tpv not in types:
|
|
|
|
|
continue
|
|
|
|
|
arg = find_token(document.body, 'arg', i, j)
|
|
|
|
|
argv = get_quoted_value(document.body, "arg", arg)
|
|
|
|
|
isodate = ""
|
|
|
|
|
dte = date.today()
|
|
|
|
|
if tpv == "fixdate":
|
|
|
|
|
datecomps = argv.split('@')
|
|
|
|
|
if len(datecomps) > 1:
|
|
|
|
|
argv = datecomps[0]
|
|
|
|
|
isodate = datecomps[1]
|
|
|
|
|
m = re.search('(\d\d\d\d)-(\d\d)-(\d\d)', isodate)
|
|
|
|
|
if m:
|
|
|
|
|
dte = date(int(m.group(1)), int(m.group(2)), int(m.group(3)))
|
|
|
|
|
# FIXME if we had the path to the original document (not the one in the tmp dir),
|
|
|
|
|
# we could use the mtime.
|
|
|
|
|
# elif tpv == "moddate":
|
|
|
|
|
# dte = date.fromtimestamp(os.path.getmtime(document.dir))
|
|
|
|
|
result = ""
|
|
|
|
|
if argv == "ISO":
|
|
|
|
|
result = dte.isodate()
|
|
|
|
|
elif argv == "long":
|
|
|
|
|
result = dte.strftime(dateformats[lang][0])
|
|
|
|
|
elif argv == "short":
|
|
|
|
|
result = dte.strftime(dateformats[lang][1])
|
|
|
|
|
elif argv == "loclong":
|
|
|
|
|
result = dte.strftime(dateformats[lang][2])
|
|
|
|
|
elif argv == "locmedium":
|
|
|
|
|
result = dte.strftime(dateformats[lang][3])
|
|
|
|
|
elif argv == "locshort":
|
|
|
|
|
result = dte.strftime(dateformats[lang][4])
|
|
|
|
|
else:
|
|
|
|
|
fmt = argv.replace("MMMM", "%b").replace("MMM", "%b").replace("MM", "%m").replace("M", "%m")
|
|
|
|
|
fmt = fmt.replace("yyyy", "%Y").replace("yy", "%y")
|
|
|
|
|
fmt = fmt.replace("dddd", "%A").replace("ddd", "%a").replace("dd", "%d")
|
|
|
|
|
fmt = re.sub('[^\'%]d', '%d', fmt)
|
|
|
|
|
fmt = fmt.replace("'", "")
|
|
|
|
|
result = dte.strftime(fmt)
|
2019-01-23 10:06:04 +00:00
|
|
|
|
if sys.version_info < (3,0):
|
|
|
|
|
# In Python 2, datetime module works with binary strings,
|
|
|
|
|
# our dateformat strings are utf8-encoded:
|
|
|
|
|
result = result.decode('utf-8')
|
2019-05-15 15:32:09 +00:00
|
|
|
|
document.body[i : j+1] = [result]
|
2018-08-05 07:51:12 +00:00
|
|
|
|
|
|
|
|
|
|
2018-08-07 10:14:45 +00:00
|
|
|
|
def revert_timeinfo(document):
|
|
|
|
|
" Revert time info insets to static text. "
|
|
|
|
|
|
|
|
|
|
# FIXME This currently only considers the main language and uses the system locale
|
|
|
|
|
# Ideally, it should honor context languages and switch the locale accordingly.
|
|
|
|
|
# Also, the time object is "naive", i.e., it does not know of timezones (%Z will
|
|
|
|
|
# be empty).
|
|
|
|
|
|
|
|
|
|
# The time formats for each language using strftime syntax:
|
|
|
|
|
# long, short
|
|
|
|
|
timeformats = {
|
|
|
|
|
"afrikaans" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"albanian" : ["%I:%M:%S %p, %Z", "%I:%M %p"],
|
|
|
|
|
"american" : ["%I:%M:%S %p %Z", "%I:%M %p"],
|
|
|
|
|
"amharic" : ["%I:%M:%S %p %Z", "%I:%M %p"],
|
|
|
|
|
"ancientgreek" : ["%H:%M:%S %Z", "%H:%M:%S"],
|
|
|
|
|
"arabic_arabi" : ["%I:%M:%S %p %Z", "%I:%M %p"],
|
|
|
|
|
"arabic_arabtex" : ["%I:%M:%S %p %Z", "%I:%M %p"],
|
|
|
|
|
"armenian" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"asturian" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"australian" : ["%I:%M:%S %p %Z", "%I:%M %p"],
|
|
|
|
|
"austrian" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"bahasa" : ["%H.%M.%S %Z", "%H.%M"],
|
|
|
|
|
"bahasam" : ["%I:%M:%S %p %Z", "%I:%M %p"],
|
|
|
|
|
"basque" : ["%H:%M:%S (%Z)", "%H:%M"],
|
|
|
|
|
"belarusian" : ["%H:%M:%S, %Z", "%H:%M"],
|
|
|
|
|
"bosnian" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"brazilian" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"breton" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"british" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"bulgarian" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"canadian" : ["%I:%M:%S %p %Z", "%I:%M %p"],
|
|
|
|
|
"canadien" : ["%H:%M:%S %Z", "%H h %M"],
|
|
|
|
|
"catalan" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"chinese-simplified" : ["%Z %p%I:%M:%S", "%p%I:%M"],
|
|
|
|
|
"chinese-traditional" : ["%p%I:%M:%S [%Z]", "%p%I:%M"],
|
|
|
|
|
"coptic" : ["%H:%M:%S %Z", "%H:%M:%S"],
|
|
|
|
|
"croatian" : ["%H:%M:%S (%Z)", "%H:%M"],
|
|
|
|
|
"czech" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"danish" : ["%H.%M.%S %Z", "%H.%M"],
|
|
|
|
|
"divehi" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"dutch" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"english" : ["%I:%M:%S %p %Z", "%I:%M %p"],
|
|
|
|
|
"esperanto" : ["%H:%M:%S %Z", "%H:%M:%S"],
|
|
|
|
|
"estonian" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"farsi" : ["%H:%M:%S (%Z)", "%H:%M"],
|
|
|
|
|
"finnish" : ["%H.%M.%S %Z", "%H.%M"],
|
|
|
|
|
"french" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"friulan" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"galician" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"georgian" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"german" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"german-ch" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"german-ch-old" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"greek" : ["%I:%M:%S %p %Z", "%I:%M %p"],
|
|
|
|
|
"hebrew" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"hindi" : ["%I:%M:%S %p %Z", "%I:%M %p"],
|
|
|
|
|
"icelandic" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"interlingua" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"irish" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"italian" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"japanese" : ["%H時%M分%S秒 %Z", "%H:%M"],
|
|
|
|
|
"japanese-cjk" : ["%H時%M分%S秒 %Z", "%H:%M"],
|
|
|
|
|
"kannada" : ["%I:%M:%S %p %Z", "%I:%M %p"],
|
|
|
|
|
"kazakh" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"khmer" : ["%I:%M:%S %p %Z", "%I:%M %p"],
|
|
|
|
|
"korean" : ["%p %I시%M분 %S초 %Z", "%p %I:%M"],
|
|
|
|
|
"kurmanji" : ["%H:%M:%S %Z", "%H:%M:%S"],
|
|
|
|
|
"lao" : ["%H ໂມງ%M ນາທີ %S ວິນາທີ %Z", "%H:%M"],
|
|
|
|
|
"latin" : ["%H:%M:%S %Z", "%H:%M:%S"],
|
|
|
|
|
"latvian" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"lithuanian" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"lowersorbian" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"macedonian" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"magyar" : ["%H:%M:%S %Z", "%H:%M"],
|
2019-03-10 09:21:59 +00:00
|
|
|
|
"malayalam" : ["%p %I:%M:%S %Z", "%p %I:%M"],
|
2018-08-07 10:14:45 +00:00
|
|
|
|
"marathi" : ["%I:%M:%S %p %Z", "%I:%M %p"],
|
|
|
|
|
"mongolian" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"naustrian" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"newzealand" : ["%I:%M:%S %p %Z", "%I:%M %p"],
|
|
|
|
|
"ngerman" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"norsk" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"nynorsk" : ["kl. %H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"occitan" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"piedmontese" : ["%H:%M:%S %Z", "%H:%M:%S"],
|
|
|
|
|
"polish" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"polutonikogreek" : ["%I:%M:%S %p %Z", "%I:%M %p"],
|
|
|
|
|
"portuguese" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"romanian" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"romansh" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"russian" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"samin" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"sanskrit" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"scottish" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"serbian" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"serbian-latin" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"slovak" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"slovene" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"spanish" : ["%H:%M:%S (%Z)", "%H:%M"],
|
|
|
|
|
"spanish-mexico" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"swedish" : ["kl. %H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"syriac" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"tamil" : ["%p %I:%M:%S %Z", "%p %I:%M"],
|
|
|
|
|
"telugu" : ["%I:%M:%S %p %Z", "%I:%M %p"],
|
|
|
|
|
"thai" : ["%H นาฬิกา %M นาที %S วินาที %Z", "%H:%M"],
|
|
|
|
|
"tibetan" : ["%I:%M:%S %p %Z", "%I:%M %p"],
|
|
|
|
|
"turkish" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"turkmen" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"ukrainian" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"uppersorbian" : ["%H:%M:%S %Z", "%H:%M hodź."],
|
|
|
|
|
"urdu" : ["%I:%M:%S %p %Z", "%I:%M %p"],
|
|
|
|
|
"vietnamese" : ["%H:%M:%S %Z", "%H:%M"],
|
|
|
|
|
"welsh" : ["%H:%M:%S %Z", "%H:%M"]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
types = ["time", "fixtime", "modtime" ]
|
|
|
|
|
i = 0
|
|
|
|
|
i = find_token(document.header, "\\language", 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
# this should not happen
|
|
|
|
|
document.warning("Malformed LyX document! No \\language header found!")
|
|
|
|
|
return
|
|
|
|
|
lang = get_value(document.header, "\\language", i)
|
|
|
|
|
|
|
|
|
|
i = 0
|
|
|
|
|
while True:
|
2019-07-07 21:31:12 +00:00
|
|
|
|
i = find_token(document.body, "\\begin_inset Info", i+1)
|
2018-08-07 10:14:45 +00:00
|
|
|
|
if i == -1:
|
|
|
|
|
return
|
2019-07-07 21:31:12 +00:00
|
|
|
|
j = find_end_of_inset(document.body, i+1)
|
2018-08-07 10:14:45 +00:00
|
|
|
|
if j == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Could not find end of Info inset.")
|
|
|
|
|
continue
|
|
|
|
|
tp = find_token(document.body, 'type', i, j)
|
|
|
|
|
tpv = get_quoted_value(document.body, "type", tp)
|
|
|
|
|
if tpv not in types:
|
|
|
|
|
continue
|
|
|
|
|
arg = find_token(document.body, 'arg', i, j)
|
|
|
|
|
argv = get_quoted_value(document.body, "arg", arg)
|
|
|
|
|
isotime = ""
|
|
|
|
|
dtme = datetime.now()
|
|
|
|
|
tme = dtme.time()
|
|
|
|
|
if tpv == "fixtime":
|
|
|
|
|
timecomps = argv.split('@')
|
|
|
|
|
if len(timecomps) > 1:
|
|
|
|
|
argv = timecomps[0]
|
|
|
|
|
isotime = timecomps[1]
|
|
|
|
|
m = re.search('(\d\d):(\d\d):(\d\d)', isotime)
|
|
|
|
|
if m:
|
|
|
|
|
tme = time(int(m.group(1)), int(m.group(2)), int(m.group(3)))
|
|
|
|
|
else:
|
|
|
|
|
m = re.search('(\d\d):(\d\d)', isotime)
|
|
|
|
|
if m:
|
|
|
|
|
tme = time(int(m.group(1)), int(m.group(2)))
|
|
|
|
|
# FIXME if we had the path to the original document (not the one in the tmp dir),
|
|
|
|
|
# we could use the mtime.
|
|
|
|
|
# elif tpv == "moddate":
|
|
|
|
|
# dte = date.fromtimestamp(os.path.getmtime(document.dir))
|
|
|
|
|
result = ""
|
|
|
|
|
if argv == "ISO":
|
|
|
|
|
result = tme.isoformat()
|
|
|
|
|
elif argv == "long":
|
|
|
|
|
result = tme.strftime(timeformats[lang][0])
|
|
|
|
|
elif argv == "short":
|
|
|
|
|
result = tme.strftime(timeformats[lang][1])
|
|
|
|
|
else:
|
|
|
|
|
fmt = argv.replace("HH", "%H").replace("H", "%H").replace("hh", "%I").replace("h", "%I")
|
|
|
|
|
fmt = fmt.replace("mm", "%M").replace("m", "%M").replace("ss", "%S").replace("s", "%S")
|
|
|
|
|
fmt = fmt.replace("zzz", "%f").replace("z", "%f").replace("t", "%Z")
|
|
|
|
|
fmt = fmt.replace("AP", "%p").replace("ap", "%p").replace("A", "%p").replace("a", "%p")
|
|
|
|
|
fmt = fmt.replace("'", "")
|
|
|
|
|
result = dte.strftime(fmt)
|
|
|
|
|
document.body[i : j+1] = result
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def revert_namenoextinfo(document):
|
|
|
|
|
" Merge buffer Info inset type name-noext to name. "
|
|
|
|
|
|
|
|
|
|
i = 0
|
|
|
|
|
while True:
|
2019-07-07 21:31:12 +00:00
|
|
|
|
i = find_token(document.body, "\\begin_inset Info", i+1)
|
2018-08-07 10:14:45 +00:00
|
|
|
|
if i == -1:
|
|
|
|
|
return
|
2019-07-07 21:31:12 +00:00
|
|
|
|
j = find_end_of_inset(document.body, i+1)
|
2018-08-07 10:14:45 +00:00
|
|
|
|
if j == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Could not find end of Info inset.")
|
|
|
|
|
continue
|
|
|
|
|
tp = find_token(document.body, 'type', i, j)
|
|
|
|
|
tpv = get_quoted_value(document.body, "type", tp)
|
|
|
|
|
if tpv != "buffer":
|
|
|
|
|
continue
|
|
|
|
|
arg = find_token(document.body, 'arg', i, j)
|
|
|
|
|
argv = get_quoted_value(document.body, "arg", arg)
|
|
|
|
|
if argv != "name-noext":
|
|
|
|
|
continue
|
|
|
|
|
document.body[arg] = "arg \"name\""
|
|
|
|
|
|
|
|
|
|
|
2018-08-13 15:18:44 +00:00
|
|
|
|
def revert_l7ninfo(document):
|
|
|
|
|
" Revert l7n Info inset to text. "
|
|
|
|
|
|
|
|
|
|
i = 0
|
|
|
|
|
while True:
|
2019-07-07 21:31:12 +00:00
|
|
|
|
i = find_token(document.body, "\\begin_inset Info", i+1)
|
2018-08-13 15:18:44 +00:00
|
|
|
|
if i == -1:
|
|
|
|
|
return
|
2019-07-07 21:31:12 +00:00
|
|
|
|
j = find_end_of_inset(document.body, i+1)
|
2018-08-13 15:18:44 +00:00
|
|
|
|
if j == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Could not find end of Info inset.")
|
|
|
|
|
continue
|
|
|
|
|
tp = find_token(document.body, 'type', i, j)
|
|
|
|
|
tpv = get_quoted_value(document.body, "type", tp)
|
|
|
|
|
if tpv != "l7n":
|
|
|
|
|
continue
|
|
|
|
|
arg = find_token(document.body, 'arg', i, j)
|
|
|
|
|
argv = get_quoted_value(document.body, "arg", arg)
|
2019-01-29 11:35:12 +00:00
|
|
|
|
# remove trailing colons, menu accelerator (|...) and qt accelerator (&), while keeping literal " & "
|
2018-08-13 15:18:44 +00:00
|
|
|
|
argv = argv.rstrip(':').split('|')[0].replace(" & ", "</amp;>").replace("&", "").replace("</amp;>", " & ")
|
|
|
|
|
document.body[i : j+1] = argv
|
|
|
|
|
|
|
|
|
|
|
2018-08-17 08:22:32 +00:00
|
|
|
|
def revert_listpargs(document):
|
|
|
|
|
" Reverts listpreamble arguments to TeX-code "
|
|
|
|
|
i = 0
|
|
|
|
|
while True:
|
2019-07-07 21:31:12 +00:00
|
|
|
|
i = find_token(document.body, "\\begin_inset Argument listpreamble:", i+1)
|
2018-08-17 08:22:32 +00:00
|
|
|
|
if i == -1:
|
|
|
|
|
return
|
|
|
|
|
j = find_end_of_inset(document.body, i)
|
|
|
|
|
# Find containing paragraph layout
|
|
|
|
|
parent = get_containing_layout(document.body, i)
|
|
|
|
|
if parent == False:
|
|
|
|
|
document.warning("Malformed LyX document: Can't find parent paragraph layout")
|
|
|
|
|
continue
|
|
|
|
|
parbeg = parent[3]
|
|
|
|
|
beginPlain = find_token(document.body, "\\begin_layout Plain Layout", i)
|
|
|
|
|
endPlain = find_end_of_layout(document.body, beginPlain)
|
|
|
|
|
content = document.body[beginPlain + 1 : endPlain]
|
|
|
|
|
del document.body[i:j+1]
|
|
|
|
|
subst = ["\\begin_inset ERT", "status collapsed", "", "\\begin_layout Plain Layout",
|
|
|
|
|
"{"] + content + ["}", "\\end_layout", "", "\\end_inset", ""]
|
|
|
|
|
document.body[parbeg : parbeg] = subst
|
|
|
|
|
|
|
|
|
|
|
2018-09-20 09:33:03 +00:00
|
|
|
|
def revert_lformatinfo(document):
|
|
|
|
|
" Revert layout format Info inset to text. "
|
|
|
|
|
|
|
|
|
|
i = 0
|
|
|
|
|
while True:
|
2019-07-07 21:31:12 +00:00
|
|
|
|
i = find_token(document.body, "\\begin_inset Info", i+1)
|
2018-09-20 09:33:03 +00:00
|
|
|
|
if i == -1:
|
|
|
|
|
return
|
2019-07-07 21:31:12 +00:00
|
|
|
|
j = find_end_of_inset(document.body, i+1)
|
2018-09-20 09:33:03 +00:00
|
|
|
|
if j == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Could not find end of Info inset.")
|
|
|
|
|
continue
|
|
|
|
|
tp = find_token(document.body, 'type', i, j)
|
|
|
|
|
tpv = get_quoted_value(document.body, "type", tp)
|
|
|
|
|
if tpv != "lyxinfo":
|
|
|
|
|
continue
|
|
|
|
|
arg = find_token(document.body, 'arg', i, j)
|
|
|
|
|
argv = get_quoted_value(document.body, "arg", arg)
|
|
|
|
|
if argv != "layoutformat":
|
|
|
|
|
continue
|
|
|
|
|
# hardcoded for now
|
|
|
|
|
document.body[i : j+1] = "69"
|
|
|
|
|
|
|
|
|
|
|
2018-10-30 11:33:35 +00:00
|
|
|
|
def convert_hebrew_parentheses(document):
|
2019-05-15 15:32:09 +00:00
|
|
|
|
""" Swap opening/closing parentheses in Hebrew text.
|
|
|
|
|
|
|
|
|
|
Up to LyX 2.4, "(" was used as closing parenthesis and
|
|
|
|
|
")" as opening parenthesis for Hebrew in the LyX source.
|
2019-04-30 09:27:35 +00:00
|
|
|
|
"""
|
2019-05-15 15:32:09 +00:00
|
|
|
|
# print("convert hebrew parentheses")
|
2019-04-30 09:27:35 +00:00
|
|
|
|
current_languages = [document.language]
|
2018-10-30 11:33:35 +00:00
|
|
|
|
for i, line in enumerate(document.body):
|
2018-11-03 13:58:32 +00:00
|
|
|
|
if line.startswith('\\lang '):
|
2019-04-30 09:27:35 +00:00
|
|
|
|
current_languages[-1] = line.lstrip('\\lang ')
|
|
|
|
|
elif line.startswith('\\begin_layout'):
|
|
|
|
|
current_languages.append(current_languages[-1])
|
2019-05-15 15:32:09 +00:00
|
|
|
|
# print (line, current_languages[-1])
|
2018-11-03 13:58:32 +00:00
|
|
|
|
elif line.startswith('\\end_layout'):
|
2019-04-30 09:27:35 +00:00
|
|
|
|
current_languages.pop()
|
|
|
|
|
elif current_languages[-1] == 'hebrew' and not line.startswith('\\'):
|
2018-10-30 11:33:35 +00:00
|
|
|
|
document.body[i] = line.replace('(','\x00').replace(')','(').replace('\x00',')')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def revert_hebrew_parentheses(document):
|
|
|
|
|
" Store parentheses in Hebrew text reversed"
|
2018-11-03 14:00:48 +00:00
|
|
|
|
# This only exists to keep the convert/revert naming convention
|
2018-10-30 11:33:35 +00:00
|
|
|
|
convert_hebrew_parentheses(document)
|
|
|
|
|
|
|
|
|
|
|
2019-03-10 09:21:59 +00:00
|
|
|
|
def revert_malayalam(document):
|
|
|
|
|
" Set the document language to English but assure Malayalam output "
|
|
|
|
|
|
|
|
|
|
revert_language(document, "malayalam", "", "malayalam")
|
|
|
|
|
|
|
|
|
|
|
2019-03-22 17:29:50 +00:00
|
|
|
|
def revert_soul(document):
|
|
|
|
|
" Revert soul module flex insets to ERT "
|
|
|
|
|
|
|
|
|
|
flexes = ["Spaceletters", "Strikethrough", "Underline", "Highlight", "Capitalize"]
|
|
|
|
|
|
|
|
|
|
for flex in flexes:
|
|
|
|
|
i = find_token(document.body, "\\begin_inset Flex %s" % flex, 0)
|
|
|
|
|
if i != -1:
|
|
|
|
|
add_to_preamble(document, ["\\usepackage{soul}"])
|
|
|
|
|
break
|
|
|
|
|
i = find_token(document.body, "\\begin_inset Flex Highlight", 0)
|
|
|
|
|
if i != -1:
|
|
|
|
|
add_to_preamble(document, ["\\usepackage{color}"])
|
2019-05-15 15:32:09 +00:00
|
|
|
|
|
2019-03-22 17:29:50 +00:00
|
|
|
|
revert_flex_inset(document.body, "Spaceletters", "\\so")
|
|
|
|
|
revert_flex_inset(document.body, "Strikethrough", "\\st")
|
|
|
|
|
revert_flex_inset(document.body, "Underline", "\\ul")
|
|
|
|
|
revert_flex_inset(document.body, "Highlight", "\\hl")
|
|
|
|
|
revert_flex_inset(document.body, "Capitalize", "\\caps")
|
|
|
|
|
|
|
|
|
|
|
2019-03-26 15:23:34 +00:00
|
|
|
|
def revert_tablestyle(document):
|
|
|
|
|
" Remove tablestyle params "
|
|
|
|
|
|
|
|
|
|
i = 0
|
2019-07-07 21:31:12 +00:00
|
|
|
|
i = find_token(document.header, "\\tablestyle")
|
2019-03-26 15:23:34 +00:00
|
|
|
|
if i != -1:
|
|
|
|
|
del document.header[i]
|
|
|
|
|
|
|
|
|
|
|
2019-03-29 14:45:55 +00:00
|
|
|
|
def revert_bibfileencodings(document):
|
|
|
|
|
" Revert individual Biblatex bibliography encodings "
|
|
|
|
|
|
|
|
|
|
# Get cite engine
|
|
|
|
|
engine = "basic"
|
|
|
|
|
i = find_token(document.header, "\\cite_engine", 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
document.warning("Malformed document! Missing \\cite_engine")
|
|
|
|
|
else:
|
|
|
|
|
engine = get_value(document.header, "\\cite_engine", i)
|
|
|
|
|
|
|
|
|
|
# Check if biblatex
|
|
|
|
|
biblatex = False
|
|
|
|
|
if engine in ["biblatex", "biblatex-natbib"]:
|
|
|
|
|
biblatex = True
|
|
|
|
|
|
|
|
|
|
# Map lyx to latex encoding names
|
|
|
|
|
encodings = {
|
|
|
|
|
"utf8" : "utf8",
|
|
|
|
|
"utf8x" : "utf8x",
|
|
|
|
|
"armscii8" : "armscii8",
|
|
|
|
|
"iso8859-1" : "latin1",
|
|
|
|
|
"iso8859-2" : "latin2",
|
|
|
|
|
"iso8859-3" : "latin3",
|
|
|
|
|
"iso8859-4" : "latin4",
|
|
|
|
|
"iso8859-5" : "iso88595",
|
|
|
|
|
"iso8859-6" : "8859-6",
|
|
|
|
|
"iso8859-7" : "iso-8859-7",
|
|
|
|
|
"iso8859-8" : "8859-8",
|
|
|
|
|
"iso8859-9" : "latin5",
|
|
|
|
|
"iso8859-13" : "latin7",
|
|
|
|
|
"iso8859-15" : "latin9",
|
|
|
|
|
"iso8859-16" : "latin10",
|
|
|
|
|
"applemac" : "applemac",
|
|
|
|
|
"cp437" : "cp437",
|
|
|
|
|
"cp437de" : "cp437de",
|
|
|
|
|
"cp850" : "cp850",
|
|
|
|
|
"cp852" : "cp852",
|
|
|
|
|
"cp855" : "cp855",
|
|
|
|
|
"cp858" : "cp858",
|
|
|
|
|
"cp862" : "cp862",
|
|
|
|
|
"cp865" : "cp865",
|
|
|
|
|
"cp866" : "cp866",
|
|
|
|
|
"cp1250" : "cp1250",
|
|
|
|
|
"cp1251" : "cp1251",
|
|
|
|
|
"cp1252" : "cp1252",
|
|
|
|
|
"cp1255" : "cp1255",
|
|
|
|
|
"cp1256" : "cp1256",
|
|
|
|
|
"cp1257" : "cp1257",
|
|
|
|
|
"koi8-r" : "koi8-r",
|
|
|
|
|
"koi8-u" : "koi8-u",
|
|
|
|
|
"pt154" : "pt154",
|
|
|
|
|
"utf8-platex" : "utf8",
|
|
|
|
|
"ascii" : "ascii"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
i = 0
|
|
|
|
|
bibresources = []
|
|
|
|
|
while (True):
|
2019-07-07 21:31:12 +00:00
|
|
|
|
i = find_token(document.body, "\\begin_inset CommandInset bibtex", i+1)
|
2019-03-29 14:45:55 +00:00
|
|
|
|
if i == -1:
|
|
|
|
|
break
|
|
|
|
|
j = find_end_of_inset(document.body, i)
|
|
|
|
|
if j == -1:
|
|
|
|
|
document.warning("Can't find end of bibtex inset at line %d!!" %(i))
|
|
|
|
|
continue
|
|
|
|
|
encodings = get_quoted_value(document.body, "file_encodings", i, j)
|
|
|
|
|
if not encodings:
|
2019-07-07 21:31:12 +00:00
|
|
|
|
i = j
|
2019-03-29 14:45:55 +00:00
|
|
|
|
continue
|
|
|
|
|
bibfiles = get_quoted_value(document.body, "bibfiles", i, j).split(",")
|
|
|
|
|
opts = get_quoted_value(document.body, "biblatexopts", i, j)
|
|
|
|
|
if len(bibfiles) == 0:
|
|
|
|
|
document.warning("Bibtex inset at line %d does not have a bibfile!" %(i))
|
|
|
|
|
# remove encoding line
|
|
|
|
|
k = find_token(document.body, "file_encodings", i, j)
|
|
|
|
|
if k != -1:
|
|
|
|
|
del document.body[k]
|
|
|
|
|
# Re-find inset end line
|
|
|
|
|
j = find_end_of_inset(document.body, i)
|
|
|
|
|
if biblatex:
|
|
|
|
|
enclist = encodings.split("\t")
|
|
|
|
|
encmap = dict()
|
|
|
|
|
for pp in enclist:
|
|
|
|
|
ppp = pp.split(" ", 1)
|
|
|
|
|
encmap[ppp[0]] = ppp[1]
|
|
|
|
|
for bib in bibfiles:
|
|
|
|
|
pr = "\\addbibresource"
|
|
|
|
|
if bib in encmap.keys():
|
|
|
|
|
pr += "[bibencoding=" + encmap[bib] + "]"
|
|
|
|
|
pr += "{" + bib + "}"
|
|
|
|
|
add_to_preamble(document, [pr])
|
|
|
|
|
# Insert ERT \\printbibliography and wrap bibtex inset to a Note
|
|
|
|
|
pcmd = "printbibliography"
|
|
|
|
|
if opts:
|
|
|
|
|
pcmd += "[" + opts + "]"
|
|
|
|
|
repl = ["\\begin_inset ERT", "status open", "", "\\begin_layout Plain Layout",\
|
|
|
|
|
"", "", "\\backslash", pcmd, "\\end_layout", "", "\\end_inset", "", "",\
|
|
|
|
|
"\\end_layout", "", "\\begin_layout Standard", "\\begin_inset Note Note",\
|
|
|
|
|
"status open", "", "\\begin_layout Plain Layout" ]
|
|
|
|
|
repl += document.body[i:j+1]
|
|
|
|
|
repl += ["", "\\end_layout", "", "\\end_inset", "", ""]
|
|
|
|
|
document.body[i:j+1] = repl
|
|
|
|
|
j += 27
|
|
|
|
|
|
2019-07-07 21:31:12 +00:00
|
|
|
|
i = j
|
2019-03-29 14:45:55 +00:00
|
|
|
|
|
|
|
|
|
|
2019-04-03 05:59:52 +00:00
|
|
|
|
def revert_cmidruletrimming(document):
|
|
|
|
|
" Remove \\cmidrule trimming "
|
|
|
|
|
|
|
|
|
|
# FIXME: Revert to TeX code?
|
|
|
|
|
i = 0
|
|
|
|
|
while True:
|
|
|
|
|
# first, let's find out if we need to do anything
|
2019-07-07 21:31:12 +00:00
|
|
|
|
i = find_token(document.body, '<cell ', i+1)
|
2019-04-03 05:59:52 +00:00
|
|
|
|
if i == -1:
|
|
|
|
|
return
|
|
|
|
|
j = document.body[i].find('trim="')
|
|
|
|
|
if j == -1:
|
|
|
|
|
continue
|
|
|
|
|
rgx = re.compile(r' (bottom|top)line[lr]trim="true"')
|
|
|
|
|
# remove trim option
|
|
|
|
|
document.body[i] = rgx.sub('', document.body[i])
|
|
|
|
|
|
2019-03-22 17:29:50 +00:00
|
|
|
|
|
2019-05-15 15:32:09 +00:00
|
|
|
|
ruby_inset_def = [
|
|
|
|
|
r'### Inserted by lyx2lyx (ruby inset) ###',
|
|
|
|
|
r'InsetLayout Flex:Ruby',
|
|
|
|
|
r' LyxType charstyle',
|
|
|
|
|
r' LatexType command',
|
|
|
|
|
r' LatexName ruby',
|
|
|
|
|
r' HTMLTag ruby',
|
|
|
|
|
r' HTMLAttr ""',
|
|
|
|
|
r' HTMLInnerTag rb',
|
|
|
|
|
r' HTMLInnerAttr ""',
|
|
|
|
|
r' BgColor none',
|
|
|
|
|
r' LabelString "Ruby"',
|
|
|
|
|
r' Decoration Conglomerate',
|
|
|
|
|
r' Preamble',
|
|
|
|
|
r' \ifdefined\kanjiskip',
|
|
|
|
|
r' \IfFileExists{okumacro.sty}{\usepackage{okumacro}}{}',
|
|
|
|
|
r' \else \ifdefined\luatexversion',
|
|
|
|
|
r' \usepackage{luatexja-ruby}',
|
|
|
|
|
r' \else \ifdefined\XeTeXversion',
|
|
|
|
|
r' \usepackage{ruby}%',
|
|
|
|
|
r' \fi\fi\fi',
|
|
|
|
|
r' \providecommand{\ruby}[2]{\shortstack{\tiny #2\\#1}}',
|
|
|
|
|
r' EndPreamble',
|
|
|
|
|
r' Argument post:1',
|
|
|
|
|
r' LabelString "ruby text"',
|
|
|
|
|
r' MenuString "Ruby Text|R"',
|
|
|
|
|
r' Tooltip "Reading aid (ruby, furigana) for Chinese characters."',
|
|
|
|
|
r' Decoration Conglomerate',
|
|
|
|
|
r' Font',
|
|
|
|
|
r' Size tiny',
|
|
|
|
|
r' EndFont',
|
|
|
|
|
r' LabelFont',
|
|
|
|
|
r' Size tiny',
|
|
|
|
|
r' EndFont',
|
|
|
|
|
r' Mandatory 1',
|
|
|
|
|
r' EndArgument',
|
|
|
|
|
r'End',
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
def convert_ruby_module(document):
|
|
|
|
|
" Use ruby module instead of local module definition "
|
|
|
|
|
if document.del_local_layout(ruby_inset_def):
|
|
|
|
|
document.add_module("ruby")
|
|
|
|
|
|
|
|
|
|
def revert_ruby_module(document):
|
|
|
|
|
" Replace ruby module with local module definition "
|
|
|
|
|
if document.del_module("ruby"):
|
|
|
|
|
document.append_local_layout(ruby_inset_def)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def convert_utf8_japanese(document):
|
|
|
|
|
" Use generic utf8 with Japanese documents."
|
|
|
|
|
lang = get_value(document.header, "\\language")
|
|
|
|
|
if not lang.startswith("japanese"):
|
|
|
|
|
return
|
|
|
|
|
inputenc = get_value(document.header, "\\inputencoding")
|
|
|
|
|
if ((lang == "japanese" and inputenc == "utf8-platex")
|
|
|
|
|
or (lang == "japanese-cjk" and inputenc == "utf8-cjk")):
|
|
|
|
|
document.set_parameter("inputencoding", "utf8")
|
|
|
|
|
|
|
|
|
|
def revert_utf8_japanese(document):
|
|
|
|
|
" Use Japanese utf8 variants with Japanese documents."
|
|
|
|
|
inputenc = get_value(document.header, "\\inputencoding")
|
|
|
|
|
if inputenc != "utf8":
|
|
|
|
|
return
|
|
|
|
|
lang = get_value(document.header, "\\language")
|
|
|
|
|
if lang == "japanese":
|
|
|
|
|
document.set_parameter("inputencoding", "utf8-platex")
|
|
|
|
|
if lang == "japanese-cjk":
|
|
|
|
|
document.set_parameter("inputencoding", "utf8-cjk")
|
|
|
|
|
|
2019-05-24 11:49:32 +00:00
|
|
|
|
|
2019-05-23 13:13:27 +00:00
|
|
|
|
def revert_lineno(document):
|
2019-05-24 11:49:32 +00:00
|
|
|
|
" Replace lineno setting with user-preamble code."
|
|
|
|
|
|
2019-05-25 11:55:34 +00:00
|
|
|
|
options = get_quoted_value(document.header, "\\lineno_options",
|
|
|
|
|
delete=True)
|
2019-05-24 11:49:32 +00:00
|
|
|
|
if not get_bool_value(document.header, "\\use_lineno", delete=True):
|
|
|
|
|
return
|
2019-05-25 11:55:34 +00:00
|
|
|
|
if options:
|
|
|
|
|
options = "[" + options + "]"
|
|
|
|
|
add_to_preamble(document, ["\\usepackage%s{lineno}" % options,
|
|
|
|
|
"\\linenumbers"])
|
2019-05-24 11:49:32 +00:00
|
|
|
|
|
|
|
|
|
def convert_lineno(document):
|
|
|
|
|
" Replace user-preamble code with native lineno support."
|
2019-05-25 11:55:34 +00:00
|
|
|
|
use_lineno = 0
|
|
|
|
|
options = ""
|
2019-07-07 21:31:12 +00:00
|
|
|
|
i = find_token(document.preamble, "\\linenumbers", 1)
|
|
|
|
|
if i > -1:
|
|
|
|
|
usepkg = re.match(r"\\usepackage(.*){lineno}", document.preamble[i-1])
|
2019-05-25 11:55:34 +00:00
|
|
|
|
if usepkg:
|
|
|
|
|
use_lineno = 1
|
|
|
|
|
options = usepkg.group(1).strip("[]")
|
2019-07-07 21:31:12 +00:00
|
|
|
|
del(document.preamble[i-1:i+1])
|
|
|
|
|
del_token(document.preamble, "% Added by lyx2lyx", i-2, i-1)
|
2019-05-25 11:55:34 +00:00
|
|
|
|
|
2019-05-24 11:49:32 +00:00
|
|
|
|
k = find_token(document.header, "\\index ")
|
2019-06-02 17:07:01 +00:00
|
|
|
|
if options == "":
|
|
|
|
|
document.header[k:k] = ["\\use_lineno %d" % use_lineno]
|
|
|
|
|
else:
|
|
|
|
|
document.header[k:k] = ["\\use_lineno %d" % use_lineno,
|
|
|
|
|
"\\lineno_options %s" % options]
|
2019-05-23 13:13:27 +00:00
|
|
|
|
|
2019-05-15 15:32:09 +00:00
|
|
|
|
|
2019-06-03 14:43:16 +00:00
|
|
|
|
def revert_new_languages(document):
|
|
|
|
|
"""Emulate support for Azerbaijani, Bengali, Church Slavonic, Korean,
|
|
|
|
|
and Russian (Petrine orthography)."""
|
2019-07-04 18:49:06 +00:00
|
|
|
|
|
|
|
|
|
# lyxname: (babelname, polyglossianame)
|
|
|
|
|
new_languages = {"azerbaijani": ("azerbaijani", ""),
|
|
|
|
|
"bengali": ("", "bengali"),
|
|
|
|
|
"churchslavonic": ("", "churchslavonic"),
|
|
|
|
|
"oldrussian": ("", "russian"),
|
|
|
|
|
"korean": ("", "korean"),
|
|
|
|
|
}
|
|
|
|
|
used_languages = set()
|
|
|
|
|
if document.language in new_languages:
|
|
|
|
|
used_languages.add(document.language)
|
|
|
|
|
i = 0
|
|
|
|
|
while True:
|
|
|
|
|
i = find_token(document.body, "\\lang", i+1)
|
|
|
|
|
if i == -1:
|
|
|
|
|
break
|
|
|
|
|
if document.body[i][6:].strip() in new_languages:
|
|
|
|
|
used_languages.add(document.language)
|
|
|
|
|
|
2019-06-03 14:43:16 +00:00
|
|
|
|
# Korean is already supported via CJK, so leave as-is for Babel
|
2019-07-04 18:49:06 +00:00
|
|
|
|
if ("korean" in used_languages
|
|
|
|
|
and get_bool_value(document.header, "\\use_non_tex_fonts")
|
|
|
|
|
and get_value(document.header, "\\language_package") in ("default", "auto")):
|
2019-06-03 14:43:16 +00:00
|
|
|
|
revert_language(document, "korean", "", "korean")
|
2019-07-04 18:49:06 +00:00
|
|
|
|
used_languages.discard("korean")
|
|
|
|
|
|
|
|
|
|
for lang in used_languages:
|
|
|
|
|
revert(lang, *new_languages[lang])
|
2019-06-03 14:43:16 +00:00
|
|
|
|
|
|
|
|
|
|
2019-06-04 09:01:19 +00:00
|
|
|
|
gloss_inset_def = [
|
|
|
|
|
r'### Inserted by lyx2lyx (deprecated ling glosses) ###',
|
|
|
|
|
r'InsetLayout Flex:Glosse',
|
|
|
|
|
r' LyXType custom',
|
|
|
|
|
r' LabelString "Gloss (old version)"',
|
|
|
|
|
r' MenuString "Gloss (old version)"',
|
|
|
|
|
r' LatexType environment',
|
|
|
|
|
r' LatexName linggloss',
|
|
|
|
|
r' Decoration minimalistic',
|
|
|
|
|
r' LabelFont',
|
|
|
|
|
r' Size Small',
|
|
|
|
|
r' EndFont',
|
|
|
|
|
r' MultiPar true',
|
|
|
|
|
r' CustomPars false',
|
|
|
|
|
r' ForcePlain true',
|
|
|
|
|
r' ParbreakIsNewline true',
|
|
|
|
|
r' FreeSpacing true',
|
2019-07-07 21:31:12 +00:00
|
|
|
|
r' Requires covington',
|
2019-06-04 09:01:19 +00:00
|
|
|
|
r' Preamble',
|
|
|
|
|
r' \def\glosstr{}',
|
|
|
|
|
r' \@ifundefined{linggloss}{%',
|
|
|
|
|
r' \newenvironment{linggloss}[2][]{',
|
|
|
|
|
r' \def\glosstr{\glt #1}%',
|
|
|
|
|
r' \gll #2}',
|
|
|
|
|
r' {\glosstr\glend}}{}',
|
|
|
|
|
r' EndPreamble',
|
|
|
|
|
r' InToc true',
|
|
|
|
|
r' ResetsFont true',
|
|
|
|
|
r' Argument 1',
|
2019-07-07 21:31:12 +00:00
|
|
|
|
r' Decoration conglomerate',
|
|
|
|
|
r' LabelString "Translation"',
|
|
|
|
|
r' MenuString "Glosse Translation|s"',
|
|
|
|
|
r' Tooltip "Add a translation for the glosse"',
|
2019-06-04 09:01:19 +00:00
|
|
|
|
r' EndArgument',
|
|
|
|
|
r'End'
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
glosss_inset_def = [
|
|
|
|
|
r'### Inserted by lyx2lyx (deprecated ling glosses) ###',
|
|
|
|
|
r'InsetLayout Flex:Tri-Glosse',
|
|
|
|
|
r' LyXType custom',
|
|
|
|
|
r' LabelString "Tri-Gloss (old version)"',
|
|
|
|
|
r' MenuString "Tri-Gloss (old version)"',
|
|
|
|
|
r' LatexType environment',
|
|
|
|
|
r' LatexName lingglosss',
|
|
|
|
|
r' Decoration minimalistic',
|
|
|
|
|
r' LabelFont',
|
|
|
|
|
r' Size Small',
|
|
|
|
|
r' EndFont',
|
|
|
|
|
r' MultiPar true',
|
|
|
|
|
r' CustomPars false',
|
|
|
|
|
r' ForcePlain true',
|
|
|
|
|
r' ParbreakIsNewline true',
|
|
|
|
|
r' FreeSpacing true',
|
|
|
|
|
r' InToc true',
|
2019-07-07 21:31:12 +00:00
|
|
|
|
r' Requires covington',
|
2019-06-04 09:01:19 +00:00
|
|
|
|
r' Preamble',
|
|
|
|
|
r' \def\glosstr{}',
|
|
|
|
|
r' \@ifundefined{lingglosss}{%',
|
|
|
|
|
r' \newenvironment{lingglosss}[2][]{',
|
|
|
|
|
r' \def\glosstr{\glt #1}%',
|
|
|
|
|
r' \glll #2}',
|
|
|
|
|
r' {\glosstr\glend}}{}',
|
|
|
|
|
r' EndPreamble',
|
|
|
|
|
r' ResetsFont true',
|
|
|
|
|
r' Argument 1',
|
2019-07-07 21:31:12 +00:00
|
|
|
|
r' Decoration conglomerate',
|
|
|
|
|
r' LabelString "Translation"',
|
|
|
|
|
r' MenuString "Glosse Translation|s"',
|
|
|
|
|
r' Tooltip "Add a translation for the glosse"',
|
2019-06-04 09:01:19 +00:00
|
|
|
|
r' EndArgument',
|
|
|
|
|
r'End'
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
def convert_linggloss(document):
|
|
|
|
|
" Move old ling glosses to local layout "
|
|
|
|
|
if find_token(document.body, '\\begin_inset Flex Glosse', 0) != -1:
|
|
|
|
|
document.append_local_layout(gloss_inset_def)
|
|
|
|
|
if find_token(document.body, '\\begin_inset Flex Tri-Glosse', 0) != -1:
|
|
|
|
|
document.append_local_layout(glosss_inset_def)
|
|
|
|
|
|
|
|
|
|
def revert_linggloss(document):
|
|
|
|
|
" Revert to old ling gloss definitions "
|
|
|
|
|
if not "linguistics" in document.get_module_list():
|
|
|
|
|
return
|
2019-07-07 21:31:12 +00:00
|
|
|
|
document.del_local_layout(gloss_inset_def)
|
|
|
|
|
document.del_local_layout(glosss_inset_def)
|
2019-06-04 09:01:19 +00:00
|
|
|
|
|
|
|
|
|
cov_req = False
|
2019-06-23 10:59:56 +00:00
|
|
|
|
glosses = ["\\begin_inset Flex Interlinear Gloss (2 Lines)", "\\begin_inset Flex Interlinear Gloss (3 Lines)"]
|
2019-06-04 09:01:19 +00:00
|
|
|
|
for glosse in glosses:
|
|
|
|
|
i = 0
|
|
|
|
|
while True:
|
2019-07-07 21:31:12 +00:00
|
|
|
|
i = find_token(document.body, glosse, i+1)
|
2019-06-04 09:01:19 +00:00
|
|
|
|
if i == -1:
|
|
|
|
|
break
|
|
|
|
|
j = find_end_of_inset(document.body, i)
|
|
|
|
|
if j == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Can't find end of Gloss inset")
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
arg = find_token(document.body, "\\begin_inset Argument 1", i, j)
|
|
|
|
|
endarg = find_end_of_inset(document.body, arg)
|
|
|
|
|
optargcontent = []
|
|
|
|
|
if arg != -1:
|
|
|
|
|
argbeginPlain = find_token(document.body, "\\begin_layout Plain Layout", arg, endarg)
|
|
|
|
|
if argbeginPlain == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Can't find optarg plain Layout")
|
|
|
|
|
continue
|
|
|
|
|
argendPlain = find_end_of_inset(document.body, argbeginPlain)
|
|
|
|
|
optargcontent = document.body[argbeginPlain + 1 : argendPlain - 2]
|
|
|
|
|
|
|
|
|
|
# remove Arg insets and paragraph, if it only contains this inset
|
|
|
|
|
if document.body[arg - 1] == "\\begin_layout Plain Layout" and find_end_of_layout(document.body, arg - 1) == endarg + 3:
|
|
|
|
|
del document.body[arg - 1 : endarg + 4]
|
|
|
|
|
else:
|
|
|
|
|
del document.body[arg : endarg + 1]
|
|
|
|
|
|
|
|
|
|
arg = find_token(document.body, "\\begin_inset Argument post:1", i, j)
|
|
|
|
|
endarg = find_end_of_inset(document.body, arg)
|
|
|
|
|
marg1content = []
|
|
|
|
|
if arg != -1:
|
|
|
|
|
argbeginPlain = find_token(document.body, "\\begin_layout Plain Layout", arg, endarg)
|
|
|
|
|
if argbeginPlain == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Can't find arg 1 plain Layout")
|
|
|
|
|
continue
|
|
|
|
|
argendPlain = find_end_of_inset(document.body, argbeginPlain)
|
|
|
|
|
marg1content = document.body[argbeginPlain + 1 : argendPlain - 2]
|
|
|
|
|
|
|
|
|
|
# remove Arg insets and paragraph, if it only contains this inset
|
|
|
|
|
if document.body[arg - 1] == "\\begin_layout Plain Layout" and find_end_of_layout(document.body, arg - 1) == endarg + 3:
|
|
|
|
|
del document.body[arg - 1 : endarg + 4]
|
|
|
|
|
else:
|
|
|
|
|
del document.body[arg : endarg + 1]
|
|
|
|
|
|
|
|
|
|
arg = find_token(document.body, "\\begin_inset Argument post:2", i, j)
|
|
|
|
|
endarg = find_end_of_inset(document.body, arg)
|
|
|
|
|
marg2content = []
|
|
|
|
|
if arg != -1:
|
|
|
|
|
argbeginPlain = find_token(document.body, "\\begin_layout Plain Layout", arg, endarg)
|
|
|
|
|
if argbeginPlain == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Can't find arg 2 plain Layout")
|
|
|
|
|
continue
|
|
|
|
|
argendPlain = find_end_of_inset(document.body, argbeginPlain)
|
|
|
|
|
marg2content = document.body[argbeginPlain + 1 : argendPlain - 2]
|
|
|
|
|
|
|
|
|
|
# remove Arg insets and paragraph, if it only contains this inset
|
|
|
|
|
if document.body[arg - 1] == "\\begin_layout Plain Layout" and find_end_of_layout(document.body, arg - 1) == endarg + 3:
|
|
|
|
|
del document.body[arg - 1 : endarg + 4]
|
|
|
|
|
else:
|
|
|
|
|
del document.body[arg : endarg + 1]
|
|
|
|
|
|
|
|
|
|
arg = find_token(document.body, "\\begin_inset Argument post:3", i, j)
|
|
|
|
|
endarg = find_end_of_inset(document.body, arg)
|
|
|
|
|
marg3content = []
|
|
|
|
|
if arg != -1:
|
|
|
|
|
argbeginPlain = find_token(document.body, "\\begin_layout Plain Layout", arg, endarg)
|
|
|
|
|
if argbeginPlain == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Can't find arg 3 plain Layout")
|
|
|
|
|
continue
|
|
|
|
|
argendPlain = find_end_of_inset(document.body, argbeginPlain)
|
|
|
|
|
marg3content = document.body[argbeginPlain + 1 : argendPlain - 2]
|
|
|
|
|
|
|
|
|
|
# remove Arg insets and paragraph, if it only contains this inset
|
|
|
|
|
if document.body[arg - 1] == "\\begin_layout Plain Layout" and find_end_of_layout(document.body, arg - 1) == endarg + 3:
|
|
|
|
|
del document.body[arg - 1 : endarg + 4]
|
|
|
|
|
else:
|
|
|
|
|
del document.body[arg : endarg + 1]
|
|
|
|
|
|
|
|
|
|
cmd = "\\digloss"
|
|
|
|
|
if glosse == "\\begin_inset Flex Interlinear Gloss (3 Lines)":
|
|
|
|
|
cmd = "\\trigloss"
|
|
|
|
|
|
|
|
|
|
beginPlain = find_token(document.body, "\\begin_layout Plain Layout", i)
|
|
|
|
|
endInset = find_end_of_inset(document.body, i)
|
|
|
|
|
endPlain = find_token_backwards(document.body, "\\end_layout", endInset)
|
|
|
|
|
precontent = put_cmd_in_ert(cmd)
|
|
|
|
|
if len(optargcontent) > 0:
|
|
|
|
|
precontent += put_cmd_in_ert("[") + optargcontent + put_cmd_in_ert("]")
|
|
|
|
|
precontent += put_cmd_in_ert("{")
|
|
|
|
|
|
|
|
|
|
postcontent = put_cmd_in_ert("}{") + marg1content + put_cmd_in_ert("}{") + marg2content
|
|
|
|
|
if cmd == "\\trigloss":
|
|
|
|
|
postcontent += put_cmd_in_ert("}{") + marg3content
|
|
|
|
|
postcontent += put_cmd_in_ert("}")
|
|
|
|
|
|
|
|
|
|
document.body[endPlain:endInset + 1] = postcontent
|
|
|
|
|
document.body[beginPlain + 1:beginPlain] = precontent
|
|
|
|
|
del document.body[i : beginPlain + 1]
|
|
|
|
|
if not cov_req:
|
|
|
|
|
document.append_local_layout("Requires covington")
|
|
|
|
|
cov_req = True
|
2019-07-07 21:31:12 +00:00
|
|
|
|
i = beginPlain
|
2019-06-04 09:01:19 +00:00
|
|
|
|
|
2019-06-03 14:43:16 +00:00
|
|
|
|
|
2019-06-22 11:56:12 +00:00
|
|
|
|
def revert_subexarg(document):
|
|
|
|
|
" Revert linguistic subexamples with argument to ERT "
|
|
|
|
|
|
|
|
|
|
if not "linguistics" in document.get_module_list():
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
cov_req = False
|
|
|
|
|
i = 0
|
|
|
|
|
while True:
|
2019-07-07 21:31:12 +00:00
|
|
|
|
i = find_token(document.body, "\\begin_layout Subexample", i+1)
|
2019-06-22 11:56:12 +00:00
|
|
|
|
if i == -1:
|
|
|
|
|
break
|
|
|
|
|
j = find_end_of_layout(document.body, i)
|
|
|
|
|
if j == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Can't find end of Subexample layout")
|
|
|
|
|
continue
|
|
|
|
|
while True:
|
|
|
|
|
# check for consecutive layouts
|
|
|
|
|
k = find_token(document.body, "\\begin_layout", j)
|
|
|
|
|
if k == -1 or document.body[k] != "\\begin_layout Subexample":
|
|
|
|
|
break
|
|
|
|
|
j = find_end_of_layout(document.body, k)
|
|
|
|
|
if j == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Can't find end of Subexample layout")
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
arg = find_token(document.body, "\\begin_inset Argument 1", i, j)
|
|
|
|
|
if arg == -1:
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
endarg = find_end_of_inset(document.body, arg)
|
|
|
|
|
optargcontent = ""
|
|
|
|
|
argbeginPlain = find_token(document.body, "\\begin_layout Plain Layout", arg, endarg)
|
|
|
|
|
if argbeginPlain == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Can't find optarg plain Layout")
|
|
|
|
|
continue
|
|
|
|
|
argendPlain = find_end_of_inset(document.body, argbeginPlain)
|
|
|
|
|
optargcontent = lyx2latex(document, document.body[argbeginPlain + 1 : argendPlain - 2])
|
|
|
|
|
|
|
|
|
|
# remove Arg insets and paragraph, if it only contains this inset
|
|
|
|
|
if document.body[arg - 1] == "\\begin_layout Plain Layout" and find_end_of_layout(document.body, arg - 1) == endarg + 3:
|
|
|
|
|
del document.body[arg - 1 : endarg + 4]
|
|
|
|
|
else:
|
|
|
|
|
del document.body[arg : endarg + 1]
|
|
|
|
|
|
|
|
|
|
cmd = put_cmd_in_ert("\\begin{subexamples}[" + optargcontent + "]")
|
|
|
|
|
|
|
|
|
|
# re-find end of layout
|
|
|
|
|
j = find_end_of_layout(document.body, i)
|
|
|
|
|
if j == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Can't find end of Subexample layout")
|
|
|
|
|
continue
|
|
|
|
|
while True:
|
|
|
|
|
# check for consecutive layouts
|
|
|
|
|
k = find_token(document.body, "\\begin_layout", j)
|
|
|
|
|
if k == -1 or document.body[k] != "\\begin_layout Subexample":
|
|
|
|
|
break
|
|
|
|
|
document.body[k : k + 1] = ["\\begin_layout Standard"] + put_cmd_in_ert("\\item ")
|
|
|
|
|
j = find_end_of_layout(document.body, k)
|
|
|
|
|
if j == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Can't find end of Subexample layout")
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
endev = put_cmd_in_ert("\\end{subexamples}")
|
|
|
|
|
|
|
|
|
|
document.body[j : j] = ["\\end_layout", "", "\\begin_layout Standard"] + endev
|
|
|
|
|
document.body[i : i + 1] = ["\\begin_layout Standard"] + cmd \
|
|
|
|
|
+ ["\\end_layout", "", "\\begin_layout Standard"] + put_cmd_in_ert("\\item ")
|
|
|
|
|
if not cov_req:
|
|
|
|
|
document.append_local_layout("Requires covington")
|
|
|
|
|
cov_req = True
|
|
|
|
|
|
|
|
|
|
|
2019-06-23 10:59:56 +00:00
|
|
|
|
def revert_drs(document):
|
|
|
|
|
" Revert DRS insets (linguistics) to ERT "
|
|
|
|
|
|
|
|
|
|
if not "linguistics" in document.get_module_list():
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
cov_req = False
|
|
|
|
|
drses = ["\\begin_inset Flex DRS", "\\begin_inset Flex DRS*",
|
|
|
|
|
"\\begin_inset Flex IfThen-DRS", "\\begin_inset Flex Cond-DRS",
|
|
|
|
|
"\\begin_inset Flex QDRS", "\\begin_inset Flex NegDRS",
|
|
|
|
|
"\\begin_inset Flex SDRS"]
|
|
|
|
|
for drs in drses:
|
|
|
|
|
i = 0
|
|
|
|
|
while True:
|
2019-07-07 21:31:12 +00:00
|
|
|
|
i = find_token(document.body, drs, i+1)
|
2019-06-23 10:59:56 +00:00
|
|
|
|
if i == -1:
|
|
|
|
|
break
|
|
|
|
|
j = find_end_of_inset(document.body, i)
|
|
|
|
|
if j == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Can't find end of DRS inset")
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
# Check for arguments
|
|
|
|
|
arg = find_token(document.body, "\\begin_inset Argument 1", i, j)
|
|
|
|
|
endarg = find_end_of_inset(document.body, arg)
|
|
|
|
|
prearg1content = []
|
|
|
|
|
if arg != -1:
|
|
|
|
|
argbeginPlain = find_token(document.body, "\\begin_layout Plain Layout", arg, endarg)
|
|
|
|
|
if argbeginPlain == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Can't find Argument 1 plain Layout")
|
|
|
|
|
continue
|
|
|
|
|
argendPlain = find_end_of_inset(document.body, argbeginPlain)
|
|
|
|
|
prearg1content = document.body[argbeginPlain + 1 : argendPlain - 2]
|
|
|
|
|
|
|
|
|
|
# remove Arg insets and paragraph, if it only contains this inset
|
|
|
|
|
if document.body[arg - 1] == "\\begin_layout Plain Layout" and find_end_of_layout(document.body, arg - 1) == endarg + 3:
|
|
|
|
|
del document.body[arg - 1 : endarg + 4]
|
|
|
|
|
else:
|
|
|
|
|
del document.body[arg : endarg + 1]
|
|
|
|
|
|
|
|
|
|
# re-find inset end
|
|
|
|
|
j = find_end_of_inset(document.body, i)
|
|
|
|
|
if j == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Can't find end of DRS inset")
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
arg = find_token(document.body, "\\begin_inset Argument 2", i, j)
|
|
|
|
|
endarg = find_end_of_inset(document.body, arg)
|
|
|
|
|
prearg2content = []
|
|
|
|
|
if arg != -1:
|
|
|
|
|
argbeginPlain = find_token(document.body, "\\begin_layout Plain Layout", arg, endarg)
|
|
|
|
|
if argbeginPlain == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Can't find Argument 2 plain Layout")
|
|
|
|
|
continue
|
|
|
|
|
argendPlain = find_end_of_inset(document.body, argbeginPlain)
|
|
|
|
|
prearg2content = document.body[argbeginPlain + 1 : argendPlain - 2]
|
|
|
|
|
|
|
|
|
|
# remove Arg insets and paragraph, if it only contains this inset
|
|
|
|
|
if document.body[arg - 1] == "\\begin_layout Plain Layout" and find_end_of_layout(document.body, arg - 1) == endarg + 3:
|
|
|
|
|
del document.body[arg - 1 : endarg + 4]
|
|
|
|
|
else:
|
|
|
|
|
del document.body[arg : endarg + 1]
|
|
|
|
|
|
|
|
|
|
# re-find inset end
|
|
|
|
|
j = find_end_of_inset(document.body, i)
|
|
|
|
|
if j == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Can't find end of DRS inset")
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
arg = find_token(document.body, "\\begin_inset Argument post:1", i, j)
|
|
|
|
|
endarg = find_end_of_inset(document.body, arg)
|
|
|
|
|
postarg1content = []
|
|
|
|
|
if arg != -1:
|
|
|
|
|
argbeginPlain = find_token(document.body, "\\begin_layout Plain Layout", arg, endarg)
|
|
|
|
|
if argbeginPlain == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Can't find Argument post:1 plain Layout")
|
|
|
|
|
continue
|
|
|
|
|
argendPlain = find_end_of_inset(document.body, argbeginPlain)
|
|
|
|
|
postarg1content = document.body[argbeginPlain + 1 : argendPlain - 2]
|
|
|
|
|
|
|
|
|
|
# remove Arg insets and paragraph, if it only contains this inset
|
|
|
|
|
if document.body[arg - 1] == "\\begin_layout Plain Layout" and find_end_of_layout(document.body, arg - 1) == endarg + 3:
|
|
|
|
|
del document.body[arg - 1 : endarg + 4]
|
|
|
|
|
else:
|
|
|
|
|
del document.body[arg : endarg + 1]
|
|
|
|
|
|
|
|
|
|
# re-find inset end
|
|
|
|
|
j = find_end_of_inset(document.body, i)
|
|
|
|
|
if j == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Can't find end of DRS inset")
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
arg = find_token(document.body, "\\begin_inset Argument post:2", i, j)
|
|
|
|
|
endarg = find_end_of_inset(document.body, arg)
|
|
|
|
|
postarg2content = []
|
|
|
|
|
if arg != -1:
|
|
|
|
|
argbeginPlain = find_token(document.body, "\\begin_layout Plain Layout", arg, endarg)
|
|
|
|
|
if argbeginPlain == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Can't find Argument post:2 plain Layout")
|
|
|
|
|
continue
|
|
|
|
|
argendPlain = find_end_of_inset(document.body, argbeginPlain)
|
|
|
|
|
postarg2content = document.body[argbeginPlain + 1 : argendPlain - 2]
|
|
|
|
|
|
|
|
|
|
# remove Arg insets and paragraph, if it only contains this inset
|
|
|
|
|
if document.body[arg - 1] == "\\begin_layout Plain Layout" and find_end_of_layout(document.body, arg - 1) == endarg + 3:
|
|
|
|
|
del document.body[arg - 1 : endarg + 4]
|
|
|
|
|
else:
|
|
|
|
|
del document.body[arg : endarg + 1]
|
|
|
|
|
|
|
|
|
|
# re-find inset end
|
|
|
|
|
j = find_end_of_inset(document.body, i)
|
|
|
|
|
if j == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Can't find end of DRS inset")
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
arg = find_token(document.body, "\\begin_inset Argument post:3", i, j)
|
|
|
|
|
endarg = find_end_of_inset(document.body, arg)
|
|
|
|
|
postarg3content = []
|
|
|
|
|
if arg != -1:
|
|
|
|
|
argbeginPlain = find_token(document.body, "\\begin_layout Plain Layout", arg, endarg)
|
|
|
|
|
if argbeginPlain == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Can't find Argument post:3 plain Layout")
|
|
|
|
|
continue
|
|
|
|
|
argendPlain = find_end_of_inset(document.body, argbeginPlain)
|
|
|
|
|
postarg3content = document.body[argbeginPlain + 1 : argendPlain - 2]
|
|
|
|
|
|
|
|
|
|
# remove Arg insets and paragraph, if it only contains this inset
|
|
|
|
|
if document.body[arg - 1] == "\\begin_layout Plain Layout" and find_end_of_layout(document.body, arg - 1) == endarg + 3:
|
|
|
|
|
del document.body[arg - 1 : endarg + 4]
|
|
|
|
|
else:
|
|
|
|
|
del document.body[arg : endarg + 1]
|
|
|
|
|
|
|
|
|
|
# re-find inset end
|
|
|
|
|
j = find_end_of_inset(document.body, i)
|
|
|
|
|
if j == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Can't find end of DRS inset")
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
arg = find_token(document.body, "\\begin_inset Argument post:4", i, j)
|
|
|
|
|
endarg = find_end_of_inset(document.body, arg)
|
|
|
|
|
postarg4content = []
|
|
|
|
|
if arg != -1:
|
|
|
|
|
argbeginPlain = find_token(document.body, "\\begin_layout Plain Layout", arg, endarg)
|
|
|
|
|
if argbeginPlain == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Can't find Argument post:4 plain Layout")
|
|
|
|
|
continue
|
|
|
|
|
argendPlain = find_end_of_inset(document.body, argbeginPlain)
|
|
|
|
|
postarg4content = document.body[argbeginPlain + 1 : argendPlain - 2]
|
|
|
|
|
|
|
|
|
|
# remove Arg insets and paragraph, if it only contains this inset
|
|
|
|
|
if document.body[arg - 1] == "\\begin_layout Plain Layout" and find_end_of_layout(document.body, arg - 1) == endarg + 3:
|
|
|
|
|
del document.body[arg - 1 : endarg + 4]
|
|
|
|
|
else:
|
|
|
|
|
del document.body[arg : endarg + 1]
|
|
|
|
|
|
|
|
|
|
# The respective LaTeX command
|
|
|
|
|
cmd = "\\drs"
|
|
|
|
|
if drs == "\\begin_inset Flex DRS*":
|
|
|
|
|
cmd = "\\drs*"
|
|
|
|
|
elif drs == "\\begin_inset Flex IfThen-DRS":
|
|
|
|
|
cmd = "\\ifdrs"
|
|
|
|
|
elif drs == "\\begin_inset Flex Cond-DRS":
|
|
|
|
|
cmd = "\\condrs"
|
|
|
|
|
elif drs == "\\begin_inset Flex QDRS":
|
|
|
|
|
cmd = "\\qdrs"
|
|
|
|
|
elif drs == "\\begin_inset Flex NegDRS":
|
|
|
|
|
cmd = "\\negdrs"
|
|
|
|
|
elif drs == "\\begin_inset Flex SDRS":
|
|
|
|
|
cmd = "\\sdrs"
|
|
|
|
|
|
|
|
|
|
beginPlain = find_token(document.body, "\\begin_layout Plain Layout", i)
|
|
|
|
|
endInset = find_end_of_inset(document.body, i)
|
|
|
|
|
endPlain = find_token_backwards(document.body, "\\end_layout", endInset)
|
|
|
|
|
precontent = put_cmd_in_ert(cmd)
|
|
|
|
|
precontent += put_cmd_in_ert("{") + prearg1content + put_cmd_in_ert("}")
|
|
|
|
|
if drs == "\\begin_inset Flex SDRS":
|
|
|
|
|
precontent += put_cmd_in_ert("{") + prearg2content + put_cmd_in_ert("}")
|
|
|
|
|
precontent += put_cmd_in_ert("{")
|
|
|
|
|
|
|
|
|
|
postcontent = []
|
|
|
|
|
if cmd == "\\qdrs" or cmd == "\\condrs" or cmd == "\\ifdrs":
|
|
|
|
|
postcontent = put_cmd_in_ert("}{") + postarg1content + put_cmd_in_ert("}{") + postarg2content + put_cmd_in_ert("}")
|
|
|
|
|
if cmd == "\\condrs" or cmd == "\\qdrs":
|
|
|
|
|
postcontent += put_cmd_in_ert("{") + postarg3content + put_cmd_in_ert("}")
|
|
|
|
|
if cmd == "\\qdrs":
|
|
|
|
|
postcontent += put_cmd_in_ert("{") + postarg4content + put_cmd_in_ert("}")
|
|
|
|
|
else:
|
|
|
|
|
postcontent = put_cmd_in_ert("}")
|
|
|
|
|
|
|
|
|
|
document.body[endPlain:endInset + 1] = postcontent
|
|
|
|
|
document.body[beginPlain + 1:beginPlain] = precontent
|
|
|
|
|
del document.body[i : beginPlain + 1]
|
|
|
|
|
if not cov_req:
|
2019-07-07 18:51:53 +00:00
|
|
|
|
document.append_local_layout("Provides covington 1")
|
2019-06-23 10:59:56 +00:00
|
|
|
|
add_to_preamble(document, ["\\usepackage{drs,covington}"])
|
|
|
|
|
cov_req = True
|
2019-07-07 21:31:12 +00:00
|
|
|
|
i = beginPlain
|
2019-06-23 10:59:56 +00:00
|
|
|
|
|
|
|
|
|
|
2019-07-11 11:21:32 +00:00
|
|
|
|
|
|
|
|
|
def revert_babelfont(document):
|
|
|
|
|
" Reverts the use of \\babelfont to user preamble "
|
|
|
|
|
|
|
|
|
|
i = find_token(document.header, '\\use_non_tex_fonts', 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Missing \\use_non_tex_fonts.")
|
|
|
|
|
return
|
|
|
|
|
if not str2bool(get_value(document.header, "\\use_non_tex_fonts", i)):
|
|
|
|
|
return
|
|
|
|
|
i = find_token(document.header, '\\language_package', 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Missing \\language_package.")
|
|
|
|
|
return
|
|
|
|
|
if get_value(document.header, "\\language_package", 0) != "babel":
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
# check font settings
|
|
|
|
|
# defaults
|
|
|
|
|
roman = sans = typew = "default"
|
|
|
|
|
osf = False
|
|
|
|
|
sf_scale = tt_scale = 100.0
|
|
|
|
|
|
|
|
|
|
j = find_token(document.header, "\\font_roman", 0)
|
|
|
|
|
if j == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Missing \\font_roman.")
|
|
|
|
|
else:
|
|
|
|
|
# We need to use this regex since split() does not handle quote protection
|
|
|
|
|
romanfont = re.findall(r'[^"\s]\S*|".+?"', document.header[j])
|
|
|
|
|
roman = romanfont[2].strip('"')
|
|
|
|
|
romanfont[2] = '"default"'
|
|
|
|
|
document.header[j] = " ".join(romanfont)
|
|
|
|
|
|
|
|
|
|
j = find_token(document.header, "\\font_sans", 0)
|
|
|
|
|
if j == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Missing \\font_sans.")
|
|
|
|
|
else:
|
|
|
|
|
# We need to use this regex since split() does not handle quote protection
|
|
|
|
|
sansfont = re.findall(r'[^"\s]\S*|".+?"', document.header[j])
|
|
|
|
|
sans = sansfont[2].strip('"')
|
|
|
|
|
sansfont[2] = '"default"'
|
|
|
|
|
document.header[j] = " ".join(sansfont)
|
|
|
|
|
|
|
|
|
|
j = find_token(document.header, "\\font_typewriter", 0)
|
|
|
|
|
if j == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Missing \\font_typewriter.")
|
|
|
|
|
else:
|
|
|
|
|
# We need to use this regex since split() does not handle quote protection
|
|
|
|
|
ttfont = re.findall(r'[^"\s]\S*|".+?"', document.header[j])
|
|
|
|
|
typew = ttfont[2].strip('"')
|
|
|
|
|
ttfont[2] = '"default"'
|
|
|
|
|
document.header[j] = " ".join(ttfont)
|
|
|
|
|
|
|
|
|
|
i = find_token(document.header, "\\font_osf", 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Missing \\font_osf.")
|
|
|
|
|
else:
|
|
|
|
|
osf = str2bool(get_value(document.header, "\\font_osf", i))
|
|
|
|
|
|
|
|
|
|
j = find_token(document.header, "\\font_sf_scale", 0)
|
|
|
|
|
if j == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Missing \\font_sf_scale.")
|
|
|
|
|
else:
|
|
|
|
|
sfscale = document.header[j].split()
|
|
|
|
|
val = sfscale[2]
|
|
|
|
|
sfscale[2] = "100"
|
|
|
|
|
document.header[j] = " ".join(sfscale)
|
|
|
|
|
try:
|
|
|
|
|
# float() can throw
|
|
|
|
|
sf_scale = float(val)
|
|
|
|
|
except:
|
|
|
|
|
document.warning("Invalid font_sf_scale value: " + val)
|
|
|
|
|
|
|
|
|
|
j = find_token(document.header, "\\font_tt_scale", 0)
|
|
|
|
|
if j == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Missing \\font_tt_scale.")
|
|
|
|
|
else:
|
|
|
|
|
ttscale = document.header[j].split()
|
|
|
|
|
val = ttscale[2]
|
|
|
|
|
ttscale[2] = "100"
|
|
|
|
|
document.header[j] = " ".join(ttscale)
|
|
|
|
|
try:
|
|
|
|
|
# float() can throw
|
|
|
|
|
tt_scale = float(val)
|
|
|
|
|
except:
|
|
|
|
|
document.warning("Invalid font_tt_scale value: " + val)
|
|
|
|
|
|
|
|
|
|
# set preamble stuff
|
|
|
|
|
pretext = ['%% This document must be processed with xelatex or lualatex!']
|
|
|
|
|
pretext.append('\\AtBeginDocument{%')
|
|
|
|
|
if roman != "default":
|
|
|
|
|
pretext.append('\\babelfont{rm}[Mapping=tex-text]{' + roman + '}')
|
|
|
|
|
if sans != "default":
|
|
|
|
|
sf = '\\babelfont{sf}['
|
|
|
|
|
if sf_scale != 100.0:
|
|
|
|
|
sf += 'Scale=' + str(sf_scale / 100.0) + ','
|
|
|
|
|
sf += 'Mapping=tex-text]{' + sans + '}'
|
|
|
|
|
pretext.append(sf)
|
|
|
|
|
if typew != "default":
|
|
|
|
|
tw = '\\babelfont{tt}'
|
|
|
|
|
if tt_scale != 100.0:
|
|
|
|
|
tw += '[Scale=' + str(tt_scale / 100.0) + ']'
|
|
|
|
|
tw += '{' + typew + '}'
|
|
|
|
|
pretext.append(tw)
|
|
|
|
|
if osf:
|
|
|
|
|
pretext.append('\\defaultfontfeatures{Numbers=OldStyle}')
|
|
|
|
|
pretext.append('}')
|
|
|
|
|
insert_to_preamble(document, pretext)
|
|
|
|
|
|
|
|
|
|
|
2019-07-11 18:28:34 +00:00
|
|
|
|
def revert_minionpro(document):
|
|
|
|
|
" Revert native MinionPro font definition (with extra options) to LaTeX "
|
|
|
|
|
|
|
|
|
|
i = find_token(document.header, '\\use_non_tex_fonts', 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Missing \\use_non_tex_fonts.")
|
|
|
|
|
return
|
|
|
|
|
if str2bool(get_value(document.header, "\\use_non_tex_fonts", i)):
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
regexp = re.compile(r'(\\font_roman_opts)')
|
2019-07-13 12:55:59 +00:00
|
|
|
|
x = find_re(document.header, regexp, 0)
|
|
|
|
|
if x == -1:
|
2019-07-11 18:28:34 +00:00
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
# We need to use this regex since split() does not handle quote protection
|
2019-07-13 12:55:59 +00:00
|
|
|
|
romanopts = re.findall(r'[^"\s]\S*|".+?"', document.header[x])
|
2019-07-11 18:28:34 +00:00
|
|
|
|
opts = romanopts[1].strip('"')
|
|
|
|
|
|
|
|
|
|
i = find_token(document.header, "\\font_roman", 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Missing \\font_roman.")
|
|
|
|
|
return
|
|
|
|
|
else:
|
|
|
|
|
# We need to use this regex since split() does not handle quote protection
|
|
|
|
|
romanfont = re.findall(r'[^"\s]\S*|".+?"', document.header[i])
|
|
|
|
|
roman = romanfont[1].strip('"')
|
|
|
|
|
if roman != "minionpro":
|
|
|
|
|
return
|
|
|
|
|
romanfont[1] = '"default"'
|
|
|
|
|
document.header[i] = " ".join(romanfont)
|
|
|
|
|
osf = False
|
|
|
|
|
j = find_token(document.header, "\\font_osf true", 0)
|
|
|
|
|
if j != -1:
|
|
|
|
|
osf = True
|
|
|
|
|
preamble = "\\usepackage["
|
|
|
|
|
if osf:
|
|
|
|
|
document.header[j] = "\\font_osf false"
|
|
|
|
|
else:
|
|
|
|
|
preamble += "lf,"
|
|
|
|
|
preamble += opts
|
|
|
|
|
preamble += "]{MinionPro}"
|
|
|
|
|
add_to_preamble(document, [preamble])
|
2019-07-13 12:55:59 +00:00
|
|
|
|
del document.header[x]
|
2019-07-11 18:28:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def revert_font_opts(document):
|
|
|
|
|
" revert font options by outputting \\setxxxfont or \\babelfont to the preamble "
|
|
|
|
|
|
|
|
|
|
i = find_token(document.header, '\\use_non_tex_fonts', 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Missing \\use_non_tex_fonts.")
|
|
|
|
|
return
|
2019-07-13 12:55:59 +00:00
|
|
|
|
NonTeXFonts = str2bool(get_value(document.header, "\\use_non_tex_fonts", i))
|
2019-07-11 18:28:34 +00:00
|
|
|
|
i = find_token(document.header, '\\language_package', 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Missing \\language_package.")
|
|
|
|
|
return
|
|
|
|
|
Babel = (get_value(document.header, "\\language_package", 0) == "babel")
|
|
|
|
|
|
|
|
|
|
# 1. Roman
|
|
|
|
|
regexp = re.compile(r'(\\font_roman_opts)')
|
|
|
|
|
i = find_re(document.header, regexp, 0)
|
|
|
|
|
if i != -1:
|
|
|
|
|
# We need to use this regex since split() does not handle quote protection
|
|
|
|
|
romanopts = re.findall(r'[^"\s]\S*|".+?"', document.header[i])
|
|
|
|
|
opts = romanopts[1].strip('"')
|
|
|
|
|
del document.header[i]
|
2019-07-13 12:55:59 +00:00
|
|
|
|
if NonTeXFonts:
|
|
|
|
|
regexp = re.compile(r'(\\font_roman)')
|
|
|
|
|
i = find_re(document.header, regexp, 0)
|
|
|
|
|
if i != -1:
|
|
|
|
|
# We need to use this regex since split() does not handle quote protection
|
|
|
|
|
romanfont = re.findall(r'[^"\s]\S*|".+?"', document.header[i])
|
|
|
|
|
font = romanfont[2].strip('"')
|
|
|
|
|
romanfont[2] = '"default"'
|
|
|
|
|
document.header[i] = " ".join(romanfont)
|
|
|
|
|
if font != "default":
|
|
|
|
|
if Babel:
|
|
|
|
|
preamble = "\\babelfont{rm}["
|
|
|
|
|
else:
|
|
|
|
|
preamble = "\\setmainfont["
|
|
|
|
|
preamble += opts
|
|
|
|
|
preamble += ","
|
|
|
|
|
preamble += "Mapping=tex-text]{"
|
|
|
|
|
preamble += font
|
|
|
|
|
preamble += "}"
|
|
|
|
|
add_to_preamble(document, [preamble])
|
2019-07-11 18:28:34 +00:00
|
|
|
|
|
|
|
|
|
# 2. Sans
|
|
|
|
|
regexp = re.compile(r'(\\font_sans_opts)')
|
|
|
|
|
i = find_re(document.header, regexp, 0)
|
|
|
|
|
if i != -1:
|
|
|
|
|
scaleval = 100
|
|
|
|
|
# We need to use this regex since split() does not handle quote protection
|
|
|
|
|
sfopts = re.findall(r'[^"\s]\S*|".+?"', document.header[i])
|
|
|
|
|
opts = sfopts[1].strip('"')
|
|
|
|
|
del document.header[i]
|
2019-07-13 12:55:59 +00:00
|
|
|
|
if NonTeXFonts:
|
|
|
|
|
regexp = re.compile(r'(\\font_sf_scale)')
|
|
|
|
|
i = find_re(document.header, regexp, 0)
|
|
|
|
|
if i != -1:
|
|
|
|
|
scaleval = get_value(document.header, "\\font_sf_scale" , i).split()[1]
|
|
|
|
|
regexp = re.compile(r'(\\font_sans)')
|
|
|
|
|
i = find_re(document.header, regexp, 0)
|
|
|
|
|
if i != -1:
|
|
|
|
|
# We need to use this regex since split() does not handle quote protection
|
|
|
|
|
sffont = re.findall(r'[^"\s]\S*|".+?"', document.header[i])
|
|
|
|
|
font = sffont[2].strip('"')
|
|
|
|
|
sffont[2] = '"default"'
|
|
|
|
|
document.header[i] = " ".join(sffont)
|
|
|
|
|
if font != "default":
|
|
|
|
|
if Babel:
|
|
|
|
|
preamble = "\\babelfont{sf}["
|
|
|
|
|
else:
|
|
|
|
|
preamble = "\\setsansfont["
|
|
|
|
|
preamble += opts
|
2019-07-11 18:28:34 +00:00
|
|
|
|
preamble += ","
|
2019-07-13 12:55:59 +00:00
|
|
|
|
if scaleval != 100:
|
|
|
|
|
preamble += "Scale=0."
|
|
|
|
|
preamble += scaleval
|
|
|
|
|
preamble += ","
|
|
|
|
|
preamble += "Mapping=tex-text]{"
|
|
|
|
|
preamble += font
|
|
|
|
|
preamble += "}"
|
|
|
|
|
add_to_preamble(document, [preamble])
|
2019-07-11 18:28:34 +00:00
|
|
|
|
|
|
|
|
|
# 3. Typewriter
|
|
|
|
|
regexp = re.compile(r'(\\font_typewriter_opts)')
|
|
|
|
|
i = find_re(document.header, regexp, 0)
|
|
|
|
|
if i != -1:
|
|
|
|
|
scaleval = 100
|
|
|
|
|
# We need to use this regex since split() does not handle quote protection
|
|
|
|
|
ttopts = re.findall(r'[^"\s]\S*|".+?"', document.header[i])
|
|
|
|
|
opts = ttopts[1].strip('"')
|
|
|
|
|
del document.header[i]
|
2019-07-13 12:55:59 +00:00
|
|
|
|
if NonTeXFonts:
|
|
|
|
|
regexp = re.compile(r'(\\font_tt_scale)')
|
|
|
|
|
i = find_re(document.header, regexp, 0)
|
|
|
|
|
if i != -1:
|
|
|
|
|
scaleval = get_value(document.header, "\\font_tt_scale" , i).split()[1]
|
|
|
|
|
regexp = re.compile(r'(\\font_typewriter)')
|
|
|
|
|
i = find_re(document.header, regexp, 0)
|
|
|
|
|
if i != -1:
|
|
|
|
|
# We need to use this regex since split() does not handle quote protection
|
|
|
|
|
ttfont = re.findall(r'[^"\s]\S*|".+?"', document.header[i])
|
|
|
|
|
font = ttfont[2].strip('"')
|
|
|
|
|
ttfont[2] = '"default"'
|
|
|
|
|
document.header[i] = " ".join(ttfont)
|
|
|
|
|
if font != "default":
|
|
|
|
|
if Babel:
|
|
|
|
|
preamble = "\\babelfont{tt}["
|
|
|
|
|
else:
|
|
|
|
|
preamble = "\\setmonofont["
|
|
|
|
|
preamble += opts
|
2019-07-11 18:28:34 +00:00
|
|
|
|
preamble += ","
|
2019-07-13 12:55:59 +00:00
|
|
|
|
if scaleval != 100:
|
|
|
|
|
preamble += "Scale=0."
|
|
|
|
|
preamble += scaleval
|
|
|
|
|
preamble += ","
|
|
|
|
|
preamble += "Mapping=tex-text]{"
|
|
|
|
|
preamble += font
|
|
|
|
|
preamble += "}"
|
|
|
|
|
add_to_preamble(document, [preamble])
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def revert_plainNotoFonts_xopts(document):
|
|
|
|
|
" Revert native (straight) Noto font definition (with extra options) to LaTeX "
|
|
|
|
|
|
|
|
|
|
i = find_token(document.header, '\\use_non_tex_fonts', 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Missing \\use_non_tex_fonts.")
|
|
|
|
|
return
|
|
|
|
|
if str2bool(get_value(document.header, "\\use_non_tex_fonts", i)):
|
|
|
|
|
return
|
|
|
|
|
|
2019-07-13 15:03:25 +00:00
|
|
|
|
osf = False
|
|
|
|
|
y = find_token(document.header, "\\font_osf true", 0)
|
|
|
|
|
if y != -1:
|
|
|
|
|
osf = True
|
|
|
|
|
|
2019-07-13 12:55:59 +00:00
|
|
|
|
regexp = re.compile(r'(\\font_roman_opts)')
|
|
|
|
|
x = find_re(document.header, regexp, 0)
|
2019-07-13 15:03:25 +00:00
|
|
|
|
if x == -1 and not osf:
|
2019-07-13 12:55:59 +00:00
|
|
|
|
return
|
|
|
|
|
|
2019-07-13 15:03:25 +00:00
|
|
|
|
opts = ""
|
|
|
|
|
if x != -1:
|
|
|
|
|
# We need to use this regex since split() does not handle quote protection
|
|
|
|
|
romanopts = re.findall(r'[^"\s]\S*|".+?"', document.header[x])
|
|
|
|
|
opts = romanopts[1].strip('"')
|
|
|
|
|
if osf:
|
|
|
|
|
if opts != "":
|
|
|
|
|
opts += ", "
|
|
|
|
|
opts += "osf"
|
2019-07-13 12:55:59 +00:00
|
|
|
|
|
|
|
|
|
i = find_token(document.header, "\\font_roman", 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
# We need to use this regex since split() does not handle quote protection
|
|
|
|
|
romanfont = re.findall(r'[^"\s]\S*|".+?"', document.header[i])
|
|
|
|
|
roman = romanfont[1].strip('"')
|
|
|
|
|
if roman != "NotoSerif-TLF":
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
j = find_token(document.header, "\\font_sans", 0)
|
|
|
|
|
if j == -1:
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
# We need to use this regex since split() does not handle quote protection
|
|
|
|
|
sffont = re.findall(r'[^"\s]\S*|".+?"', document.header[j])
|
|
|
|
|
sf = sffont[1].strip('"')
|
|
|
|
|
if sf != "default":
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
j = find_token(document.header, "\\font_typewriter", 0)
|
|
|
|
|
if j == -1:
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
# We need to use this regex since split() does not handle quote protection
|
|
|
|
|
ttfont = re.findall(r'[^"\s]\S*|".+?"', document.header[j])
|
|
|
|
|
tt = ttfont[1].strip('"')
|
|
|
|
|
if tt != "default":
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
# So we have noto as "complete font"
|
|
|
|
|
romanfont[1] = '"default"'
|
|
|
|
|
document.header[i] = " ".join(romanfont)
|
|
|
|
|
|
|
|
|
|
preamble = "\\usepackage["
|
|
|
|
|
preamble += opts
|
|
|
|
|
preamble += "]{noto}"
|
|
|
|
|
add_to_preamble(document, [preamble])
|
2019-07-13 15:03:25 +00:00
|
|
|
|
if osf:
|
|
|
|
|
document.header[y] = "\\font_osf false"
|
|
|
|
|
if x != -1:
|
|
|
|
|
del document.header[x]
|
2019-07-13 12:55:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def revert_notoFonts_xopts(document):
|
|
|
|
|
" Revert native (extended) Noto font definition (with extra options) to LaTeX "
|
|
|
|
|
|
|
|
|
|
i = find_token(document.header, '\\use_non_tex_fonts', 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Missing \\use_non_tex_fonts.")
|
|
|
|
|
return
|
|
|
|
|
if str2bool(get_value(document.header, "\\use_non_tex_fonts", i)):
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
fontmap = dict()
|
|
|
|
|
fm = createFontMapping(['Noto'])
|
2019-07-13 15:03:25 +00:00
|
|
|
|
if revert_fonts(document, fm, fontmap, True):
|
|
|
|
|
add_preamble_fonts(document, fontmap)
|
2019-07-13 12:55:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def revert_IBMFonts_xopts(document):
|
|
|
|
|
" Revert native IBM font definition (with extra options) to LaTeX "
|
|
|
|
|
|
|
|
|
|
i = find_token(document.header, '\\use_non_tex_fonts', 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Missing \\use_non_tex_fonts.")
|
|
|
|
|
return
|
|
|
|
|
if str2bool(get_value(document.header, "\\use_non_tex_fonts", i)):
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
fontmap = dict()
|
|
|
|
|
fm = createFontMapping(['IBM'])
|
|
|
|
|
ft = ""
|
2019-07-13 15:03:25 +00:00
|
|
|
|
if revert_fonts(document, fm, fontmap, True):
|
|
|
|
|
add_preamble_fonts(document, fontmap)
|
2019-07-13 12:55:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def revert_AdobeFonts_xopts(document):
|
|
|
|
|
" Revert native Adobe font definition (with extra options) to LaTeX "
|
|
|
|
|
|
|
|
|
|
i = find_token(document.header, '\\use_non_tex_fonts', 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Missing \\use_non_tex_fonts.")
|
|
|
|
|
return
|
|
|
|
|
if str2bool(get_value(document.header, "\\use_non_tex_fonts", i)):
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
fontmap = dict()
|
|
|
|
|
fm = createFontMapping(['Adobe'])
|
|
|
|
|
ft = ""
|
2019-07-13 15:03:25 +00:00
|
|
|
|
if revert_fonts(document, fm, fontmap, True):
|
|
|
|
|
add_preamble_fonts(document, fontmap)
|
2019-07-11 18:28:34 +00:00
|
|
|
|
|
2019-07-11 11:21:32 +00:00
|
|
|
|
|
2019-07-14 09:41:36 +00:00
|
|
|
|
def convert_osf(document):
|
|
|
|
|
" Convert \\font_osf param to new format "
|
|
|
|
|
|
|
|
|
|
NonTeXFonts = False
|
|
|
|
|
i = find_token(document.header, '\\use_non_tex_fonts', 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Missing \\use_non_tex_fonts.")
|
|
|
|
|
else:
|
|
|
|
|
NonTeXFonts = str2bool(get_value(document.header, "\\use_non_tex_fonts", i))
|
|
|
|
|
|
|
|
|
|
i = find_token(document.header, '\\font_osf', 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Missing \\font_osf.")
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
osfsf = ["biolinum", "ADOBESourceSansPro", "NotoSansRegular", "NotoSansMedium", "NotoSansThin", "NotoSansLight", "NotoSansExtralight" ]
|
|
|
|
|
osftt = ["ADOBESourceCodePro", "NotoMonoRegular" ]
|
|
|
|
|
|
|
|
|
|
osfval = str2bool(get_value(document.header, "\\font_osf", i))
|
|
|
|
|
document.header[i] = document.header[i].replace("\\font_osf", "\\font_roman_osf")
|
|
|
|
|
|
|
|
|
|
if NonTeXFonts:
|
|
|
|
|
document.header.insert(i, "\\font_sans_osf false")
|
|
|
|
|
document.header.insert(i + 1, "\\font_typewriter_osf false")
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
if osfval:
|
|
|
|
|
x = find_token(document.header, "\\font_sans", 0)
|
|
|
|
|
if x == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Missing \\font_sans.")
|
|
|
|
|
else:
|
|
|
|
|
# We need to use this regex since split() does not handle quote protection
|
|
|
|
|
sffont = re.findall(r'[^"\s]\S*|".+?"', document.header[x])
|
|
|
|
|
sf = sffont[1].strip('"')
|
|
|
|
|
if sf in osfsf:
|
|
|
|
|
document.header.insert(i, "\\font_sans_osf true")
|
|
|
|
|
else:
|
|
|
|
|
document.header.insert(i, "\\font_sans_osf false")
|
|
|
|
|
|
|
|
|
|
x = find_token(document.header, "\\font_typewriter", 0)
|
|
|
|
|
if x == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Missing \\font_typewriter.")
|
|
|
|
|
else:
|
|
|
|
|
# We need to use this regex since split() does not handle quote protection
|
|
|
|
|
ttfont = re.findall(r'[^"\s]\S*|".+?"', document.header[x])
|
|
|
|
|
tt = ttfont[1].strip('"')
|
|
|
|
|
if tt in osftt:
|
2019-07-15 05:11:27 +00:00
|
|
|
|
document.header.insert(i + 1, "\\font_typewriter_osf true")
|
2019-07-14 09:41:36 +00:00
|
|
|
|
else:
|
2019-07-15 05:11:27 +00:00
|
|
|
|
document.header.insert(i + 1, "\\font_typewriter_osf false")
|
2019-07-14 09:41:36 +00:00
|
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
document.header.insert(i, "\\font_sans_osf false")
|
|
|
|
|
document.header.insert(i + 1, "\\font_typewriter_osf false")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def revert_osf(document):
|
|
|
|
|
" Revert \\font_*_osf params "
|
|
|
|
|
|
|
|
|
|
NonTeXFonts = False
|
|
|
|
|
i = find_token(document.header, '\\use_non_tex_fonts', 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Missing \\use_non_tex_fonts.")
|
|
|
|
|
else:
|
|
|
|
|
NonTeXFonts = str2bool(get_value(document.header, "\\use_non_tex_fonts", i))
|
|
|
|
|
|
|
|
|
|
i = find_token(document.header, '\\font_roman_osf', 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Missing \\font_roman_osf.")
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
osfval = str2bool(get_value(document.header, "\\font_roman_osf", i))
|
|
|
|
|
document.header[i] = document.header[i].replace("\\font_roman_osf", "\\font_osf")
|
|
|
|
|
|
|
|
|
|
i = find_token(document.header, '\\font_sans_osf', 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Missing \\font_sans_osf.")
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
osfval = str2bool(get_value(document.header, "\\font_sans_osf", i))
|
|
|
|
|
del document.header[i]
|
|
|
|
|
|
|
|
|
|
i = find_token(document.header, '\\font_typewriter_osf', 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Missing \\font_typewriter_osf.")
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
osfval |= str2bool(get_value(document.header, "\\font_typewriter_osf", i))
|
|
|
|
|
del document.header[i]
|
|
|
|
|
|
|
|
|
|
if osfval:
|
|
|
|
|
i = find_token(document.header, '\\font_osf', 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Missing \\font_osf.")
|
|
|
|
|
return
|
|
|
|
|
document.header[i] = "\\font_osf true"
|
|
|
|
|
|
|
|
|
|
|
2019-07-14 13:08:01 +00:00
|
|
|
|
def revert_texfontopts(document):
|
|
|
|
|
" Revert native TeX font definitions (with extra options) to LaTeX "
|
|
|
|
|
|
|
|
|
|
i = find_token(document.header, '\\use_non_tex_fonts', 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Missing \\use_non_tex_fonts.")
|
|
|
|
|
return
|
|
|
|
|
if str2bool(get_value(document.header, "\\use_non_tex_fonts", i)):
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
rmfonts = ["ccfonts", "cochineal", "utopia", "garamondx", "libertine", "lmodern", "palatino", "times", "xcharter" ]
|
|
|
|
|
|
|
|
|
|
# First the sf (biolinum only)
|
|
|
|
|
regexp = re.compile(r'(\\font_sans_opts)')
|
|
|
|
|
x = find_re(document.header, regexp, 0)
|
|
|
|
|
if x != -1:
|
|
|
|
|
# We need to use this regex since split() does not handle quote protection
|
|
|
|
|
sfopts = re.findall(r'[^"\s]\S*|".+?"', document.header[x])
|
|
|
|
|
opts = sfopts[1].strip('"')
|
|
|
|
|
i = find_token(document.header, "\\font_sans", 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Missing \\font_sans.")
|
|
|
|
|
else:
|
|
|
|
|
# We need to use this regex since split() does not handle quote protection
|
|
|
|
|
sffont = re.findall(r'[^"\s]\S*|".+?"', document.header[i])
|
|
|
|
|
sans = sffont[1].strip('"')
|
|
|
|
|
if sans == "biolinum":
|
|
|
|
|
sf_scale = 100.0
|
|
|
|
|
sffont[1] = '"default"'
|
|
|
|
|
document.header[i] = " ".join(sffont)
|
|
|
|
|
osf = False
|
|
|
|
|
j = find_token(document.header, "\\font_sans_osf true", 0)
|
|
|
|
|
if j != -1:
|
|
|
|
|
osf = True
|
|
|
|
|
k = find_token(document.header, "\\font_sf_scale", 0)
|
|
|
|
|
if k == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Missing \\font_sf_scale.")
|
|
|
|
|
else:
|
|
|
|
|
sfscale = document.header[k].split()
|
|
|
|
|
val = sfscale[1]
|
|
|
|
|
sfscale[1] = "100"
|
|
|
|
|
document.header[k] = " ".join(sfscale)
|
|
|
|
|
try:
|
|
|
|
|
# float() can throw
|
|
|
|
|
sf_scale = float(val)
|
|
|
|
|
except:
|
|
|
|
|
document.warning("Invalid font_sf_scale value: " + val)
|
|
|
|
|
preamble = "\\usepackage["
|
|
|
|
|
if osf:
|
|
|
|
|
document.header[j] = "\\font_sans_osf false"
|
|
|
|
|
preamble += "osf,"
|
|
|
|
|
if sf_scale != 100.0:
|
|
|
|
|
preamble += 'scaled=' + str(sf_scale / 100.0) + ','
|
|
|
|
|
preamble += opts
|
|
|
|
|
preamble += "]{biolinum}"
|
|
|
|
|
add_to_preamble(document, [preamble])
|
|
|
|
|
del document.header[x]
|
|
|
|
|
|
|
|
|
|
regexp = re.compile(r'(\\font_roman_opts)')
|
|
|
|
|
x = find_re(document.header, regexp, 0)
|
|
|
|
|
if x == -1:
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
# We need to use this regex since split() does not handle quote protection
|
|
|
|
|
romanopts = re.findall(r'[^"\s]\S*|".+?"', document.header[x])
|
|
|
|
|
opts = romanopts[1].strip('"')
|
|
|
|
|
|
|
|
|
|
i = find_token(document.header, "\\font_roman", 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Missing \\font_roman.")
|
|
|
|
|
return
|
|
|
|
|
else:
|
|
|
|
|
# We need to use this regex since split() does not handle quote protection
|
|
|
|
|
romanfont = re.findall(r'[^"\s]\S*|".+?"', document.header[i])
|
|
|
|
|
roman = romanfont[1].strip('"')
|
|
|
|
|
if not roman in rmfonts:
|
|
|
|
|
return
|
|
|
|
|
romanfont[1] = '"default"'
|
|
|
|
|
document.header[i] = " ".join(romanfont)
|
|
|
|
|
package = roman
|
|
|
|
|
if roman == "utopia":
|
|
|
|
|
package = "fourier"
|
|
|
|
|
elif roman == "palatino":
|
|
|
|
|
package = "mathpazo"
|
|
|
|
|
elif roman == "times":
|
|
|
|
|
package = "mathptmx"
|
|
|
|
|
elif roman == "xcharter":
|
|
|
|
|
package = "XCharter"
|
|
|
|
|
osf = ""
|
|
|
|
|
j = find_token(document.header, "\\font_roman_osf true", 0)
|
|
|
|
|
if j != -1:
|
|
|
|
|
if roman == "cochineal":
|
|
|
|
|
osf = "proportional,osf,"
|
|
|
|
|
elif roman == "utopia":
|
|
|
|
|
osf = "oldstyle,"
|
|
|
|
|
elif roman == "garamondx":
|
|
|
|
|
osf = "osfI,"
|
|
|
|
|
elif roman == "libertine":
|
|
|
|
|
osf = "osf,"
|
|
|
|
|
elif roman == "palatino":
|
|
|
|
|
osf = "osf,"
|
|
|
|
|
elif roman == "xcharter":
|
|
|
|
|
osf = "osf,"
|
|
|
|
|
document.header[j] = "\\font_roman_osf false"
|
|
|
|
|
k = find_token(document.header, "\\font_sc true", 0)
|
|
|
|
|
if k != -1:
|
|
|
|
|
if roman == "utopia":
|
|
|
|
|
osf += "expert,"
|
|
|
|
|
if roman == "palatino" and osf == "":
|
|
|
|
|
osf = "sc,"
|
|
|
|
|
document.header[k] = "\\font_sc false"
|
|
|
|
|
preamble = "\\usepackage["
|
|
|
|
|
preamble += osf
|
|
|
|
|
preamble += opts
|
|
|
|
|
preamble += "]{" + package + "}"
|
|
|
|
|
add_to_preamble(document, [preamble])
|
|
|
|
|
del document.header[x]
|
|
|
|
|
|
|
|
|
|
|
2019-07-15 04:34:28 +00:00
|
|
|
|
def convert_CantarellFont(document):
|
|
|
|
|
" Handle Cantarell font definition to LaTeX "
|
|
|
|
|
|
|
|
|
|
if find_token(document.header, "\\use_non_tex_fonts false", 0) != -1:
|
|
|
|
|
fm = createFontMapping(['Cantarell'])
|
2019-07-15 05:11:43 +00:00
|
|
|
|
convert_fonts(document, fm, "oldstyle")
|
2019-07-15 04:34:28 +00:00
|
|
|
|
|
|
|
|
|
def revert_CantarellFont(document):
|
|
|
|
|
" Revert native Cantarell font definition to LaTeX "
|
|
|
|
|
|
|
|
|
|
if find_token(document.header, "\\use_non_tex_fonts false", 0) != -1:
|
|
|
|
|
fontmap = dict()
|
|
|
|
|
fm = createFontMapping(['Cantarell'])
|
|
|
|
|
if revert_fonts(document, fm, fontmap, False, True):
|
|
|
|
|
add_preamble_fonts(document, fontmap)
|
|
|
|
|
|
2019-07-17 16:03:31 +00:00
|
|
|
|
def convert_ChivoFont(document):
|
|
|
|
|
" Handle Chivo font definition to LaTeX "
|
|
|
|
|
|
|
|
|
|
if find_token(document.header, "\\use_non_tex_fonts false", 0) != -1:
|
|
|
|
|
fm = createFontMapping(['Chivo'])
|
|
|
|
|
convert_fonts(document, fm, "oldstyle")
|
|
|
|
|
|
|
|
|
|
def revert_ChivoFont(document):
|
|
|
|
|
" Revert native Chivo font definition to LaTeX "
|
|
|
|
|
|
|
|
|
|
if find_token(document.header, "\\use_non_tex_fonts false", 0) != -1:
|
|
|
|
|
fontmap = dict()
|
|
|
|
|
fm = createFontMapping(['Chivo'])
|
|
|
|
|
if revert_fonts(document, fm, fontmap, False, True):
|
|
|
|
|
add_preamble_fonts(document, fontmap)
|
|
|
|
|
|
2019-07-15 04:34:28 +00:00
|
|
|
|
|
2019-07-15 11:29:09 +00:00
|
|
|
|
def convert_FiraFont(document):
|
|
|
|
|
" Handle Fira font definition to LaTeX "
|
|
|
|
|
|
|
|
|
|
if find_token(document.header, "\\use_non_tex_fonts false", 0) != -1:
|
|
|
|
|
fm = createFontMapping(['Fira'])
|
|
|
|
|
convert_fonts(document, fm, "lf")
|
|
|
|
|
|
|
|
|
|
def revert_FiraFont(document):
|
|
|
|
|
" Revert native Fira font definition to LaTeX "
|
|
|
|
|
|
|
|
|
|
if find_token(document.header, "\\use_non_tex_fonts false", 0) != -1:
|
|
|
|
|
fontmap = dict()
|
|
|
|
|
fm = createFontMapping(['Fira'])
|
|
|
|
|
if revert_fonts(document, fm, fontmap, False, True):
|
|
|
|
|
add_preamble_fonts(document, fontmap)
|
|
|
|
|
|
|
|
|
|
|
2019-07-18 06:14:09 +00:00
|
|
|
|
def convert_Semibolds(document):
|
|
|
|
|
" Move semibold options to extraopts "
|
|
|
|
|
|
|
|
|
|
NonTeXFonts = False
|
|
|
|
|
i = find_token(document.header, '\\use_non_tex_fonts', 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Missing \\use_non_tex_fonts.")
|
|
|
|
|
else:
|
|
|
|
|
NonTeXFonts = str2bool(get_value(document.header, "\\use_non_tex_fonts", i))
|
|
|
|
|
|
|
|
|
|
i = find_token(document.header, "\\font_roman", 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Missing \\font_roman.")
|
|
|
|
|
else:
|
|
|
|
|
# We need to use this regex since split() does not handle quote protection
|
|
|
|
|
romanfont = re.findall(r'[^"\s]\S*|".+?"', document.header[i])
|
|
|
|
|
roman = romanfont[1].strip('"')
|
|
|
|
|
if roman == "IBMPlexSerifSemibold":
|
|
|
|
|
romanfont[1] = '"IBMPlexSerif"'
|
|
|
|
|
document.header[i] = " ".join(romanfont)
|
|
|
|
|
|
|
|
|
|
if NonTeXFonts == False:
|
|
|
|
|
regexp = re.compile(r'(\\font_roman_opts)')
|
|
|
|
|
x = find_re(document.header, regexp, 0)
|
|
|
|
|
if x == -1:
|
|
|
|
|
# Sensible place to insert tag
|
|
|
|
|
fo = find_token(document.header, "\\font_sf_scale")
|
|
|
|
|
if fo == -1:
|
|
|
|
|
document.warning("Malformed LyX document! Missing \\font_sf_scale")
|
|
|
|
|
else:
|
|
|
|
|
document.header.insert(fo, "\\font_roman_opts \"semibold\"")
|
|
|
|
|
else:
|
|
|
|
|
# We need to use this regex since split() does not handle quote protection
|
|
|
|
|
romanopts = re.findall(r'[^"\s]\S*|".+?"', document.header[x])
|
|
|
|
|
document.header[x] = "\\font_roman_opts \"semibold, " + romanopts[1].strip('"') + "\""
|
|
|
|
|
|
|
|
|
|
i = find_token(document.header, "\\font_sans", 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Missing \\font_sans.")
|
|
|
|
|
else:
|
|
|
|
|
# We need to use this regex since split() does not handle quote protection
|
|
|
|
|
sffont = re.findall(r'[^"\s]\S*|".+?"', document.header[i])
|
|
|
|
|
sf = sffont[1].strip('"')
|
|
|
|
|
if sf == "IBMPlexSansSemibold":
|
|
|
|
|
sffont[1] = '"IBMPlexSans"'
|
|
|
|
|
document.header[i] = " ".join(sffont)
|
|
|
|
|
|
|
|
|
|
if NonTeXFonts == False:
|
|
|
|
|
regexp = re.compile(r'(\\font_sans_opts)')
|
|
|
|
|
x = find_re(document.header, regexp, 0)
|
|
|
|
|
if x == -1:
|
|
|
|
|
# Sensible place to insert tag
|
|
|
|
|
fo = find_token(document.header, "\\font_sf_scale")
|
|
|
|
|
if fo == -1:
|
|
|
|
|
document.warning("Malformed LyX document! Missing \\font_sf_scale")
|
|
|
|
|
else:
|
|
|
|
|
document.header.insert(fo, "\\font_sans_opts \"semibold\"")
|
|
|
|
|
else:
|
|
|
|
|
# We need to use this regex since split() does not handle quote protection
|
|
|
|
|
sfopts = re.findall(r'[^"\s]\S*|".+?"', document.header[x])
|
|
|
|
|
document.header[x] = "\\font_sans_opts \"semibold, " + sfopts[1].strip('"') + "\""
|
|
|
|
|
|
|
|
|
|
i = find_token(document.header, "\\font_typewriter", 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Missing \\font_typewriter.")
|
|
|
|
|
else:
|
|
|
|
|
# We need to use this regex since split() does not handle quote protection
|
|
|
|
|
ttfont = re.findall(r'[^"\s]\S*|".+?"', document.header[i])
|
|
|
|
|
tt = ttfont[1].strip('"')
|
|
|
|
|
if tt == "IBMPlexMonoSemibold":
|
|
|
|
|
ttfont[1] = '"IBMPlexMono"'
|
|
|
|
|
document.header[i] = " ".join(ttfont)
|
|
|
|
|
|
|
|
|
|
if NonTeXFonts == False:
|
|
|
|
|
regexp = re.compile(r'(\\font_typewriter_opts)')
|
|
|
|
|
x = find_re(document.header, regexp, 0)
|
|
|
|
|
if x == -1:
|
|
|
|
|
# Sensible place to insert tag
|
|
|
|
|
fo = find_token(document.header, "\\font_tt_scale")
|
|
|
|
|
if fo == -1:
|
|
|
|
|
document.warning("Malformed LyX document! Missing \\font_tt_scale")
|
|
|
|
|
else:
|
|
|
|
|
document.header.insert(fo, "\\font_typewriter_opts \"semibold\"")
|
|
|
|
|
else:
|
|
|
|
|
# We need to use this regex since split() does not handle quote protection
|
|
|
|
|
ttopts = re.findall(r'[^"\s]\S*|".+?"', document.header[x])
|
|
|
|
|
document.header[x] = "\\font_typewriter_opts \"semibold, " + sfopts[1].strip('"') + "\""
|
|
|
|
|
|
|
|
|
|
|
2019-07-18 06:41:00 +00:00
|
|
|
|
def convert_NotoRegulars(document):
|
|
|
|
|
" Merge diverse noto reagular fonts "
|
|
|
|
|
|
|
|
|
|
i = find_token(document.header, "\\font_roman", 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Missing \\font_roman.")
|
|
|
|
|
else:
|
|
|
|
|
# We need to use this regex since split() does not handle quote protection
|
|
|
|
|
romanfont = re.findall(r'[^"\s]\S*|".+?"', document.header[i])
|
|
|
|
|
roman = romanfont[1].strip('"')
|
|
|
|
|
if roman == "NotoSerif-TLF":
|
|
|
|
|
romanfont[1] = '"NotoSerifRegular"'
|
|
|
|
|
document.header[i] = " ".join(romanfont)
|
|
|
|
|
|
|
|
|
|
i = find_token(document.header, "\\font_sans", 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Missing \\font_sans.")
|
|
|
|
|
else:
|
|
|
|
|
# We need to use this regex since split() does not handle quote protection
|
|
|
|
|
sffont = re.findall(r'[^"\s]\S*|".+?"', document.header[i])
|
|
|
|
|
sf = sffont[1].strip('"')
|
|
|
|
|
if sf == "NotoSans-TLF":
|
|
|
|
|
sffont[1] = '"NotoSansRegular"'
|
|
|
|
|
document.header[i] = " ".join(sffont)
|
|
|
|
|
|
|
|
|
|
i = find_token(document.header, "\\font_typewriter", 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
document.warning("Malformed LyX document: Missing \\font_typewriter.")
|
|
|
|
|
else:
|
|
|
|
|
# We need to use this regex since split() does not handle quote protection
|
|
|
|
|
ttfont = re.findall(r'[^"\s]\S*|".+?"', document.header[i])
|
|
|
|
|
tt = ttfont[1].strip('"')
|
|
|
|
|
if tt == "NotoMono-TLF":
|
|
|
|
|
ttfont[1] = '"NotoMonoRegular"'
|
|
|
|
|
document.header[i] = " ".join(ttfont)
|
|
|
|
|
|
|
|
|
|
|
2019-07-18 08:50:46 +00:00
|
|
|
|
def convert_CrimsonProFont(document):
|
|
|
|
|
" Handle CrimsonPro font definition to LaTeX "
|
|
|
|
|
|
|
|
|
|
if find_token(document.header, "\\use_non_tex_fonts false", 0) != -1:
|
|
|
|
|
fm = createFontMapping(['CrimsonPro'])
|
|
|
|
|
convert_fonts(document, fm, "lf")
|
|
|
|
|
|
|
|
|
|
def revert_CrimsonProFont(document):
|
|
|
|
|
" Revert native CrimsonPro font definition to LaTeX "
|
|
|
|
|
|
|
|
|
|
if find_token(document.header, "\\use_non_tex_fonts false", 0) != -1:
|
|
|
|
|
fontmap = dict()
|
|
|
|
|
fm = createFontMapping(['CrimsonPro'])
|
|
|
|
|
if revert_fonts(document, fm, fontmap, False, True):
|
|
|
|
|
add_preamble_fonts(document, fontmap)
|
|
|
|
|
|
2019-08-06 16:18:37 +00:00
|
|
|
|
|
|
|
|
|
def revert_pagesizes(document):
|
|
|
|
|
" Revert new page sizes in memoir and KOMA to options "
|
|
|
|
|
|
|
|
|
|
if document.textclass != "memoir" and document.textclass[:2] != "scr":
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
i = find_token(document.header, "\\use_geometry true", 0)
|
|
|
|
|
if i != -1:
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
defsizes = ["default", "custom", "letterpaper", "legalpaper", "executivepaper", "a4paper", "a5paper", "b5paper"]
|
|
|
|
|
|
|
|
|
|
i = find_token(document.header, "\\papersize", 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
document.warning("Malformed LyX document! Missing \\papersize header.")
|
|
|
|
|
return
|
|
|
|
|
val = get_value(document.header, "\\papersize", i)
|
|
|
|
|
if val in defsizes:
|
|
|
|
|
# nothing to do
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
document.header[i] = "\\papersize default"
|
|
|
|
|
|
|
|
|
|
i = find_token(document.header, "\\options", 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
i = find_token(document.header, "\\textclass", 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
document.warning("Malformed LyX document! Missing \\textclass header.")
|
|
|
|
|
return
|
|
|
|
|
document.header.insert(i, "\\options " + val)
|
|
|
|
|
return
|
|
|
|
|
document.header[i] = document.header[i] + "," + val
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def convert_pagesizes(document):
|
|
|
|
|
" Convert to new page sizes in memoir and KOMA to options "
|
|
|
|
|
|
2019-08-06 17:29:18 +00:00
|
|
|
|
if document.textclass != "memoir" and document.textclass[:3] != "scr":
|
2019-08-06 16:18:37 +00:00
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
i = find_token(document.header, "\\use_geometry true", 0)
|
|
|
|
|
if i != -1:
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
defsizes = ["default", "custom", "letterpaper", "legalpaper", "executivepaper", "a4paper", "a5paper", "b5paper"]
|
|
|
|
|
|
|
|
|
|
i = find_token(document.header, "\\papersize", 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
document.warning("Malformed LyX document! Missing \\papersize header.")
|
|
|
|
|
return
|
|
|
|
|
val = get_value(document.header, "\\papersize", i)
|
|
|
|
|
if val in defsizes:
|
|
|
|
|
# nothing to do
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
i = find_token(document.header, "\\use_geometry false", 0)
|
|
|
|
|
if i != -1:
|
|
|
|
|
# Maintain use of geometry
|
|
|
|
|
document.header[1] = "\\use_geometry true"
|
|
|
|
|
|
2019-08-06 17:29:18 +00:00
|
|
|
|
def revert_komafontsizes(document):
|
|
|
|
|
" Revert new font sizes in KOMA to options "
|
|
|
|
|
|
|
|
|
|
if document.textclass[:3] != "scr":
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
i = find_token(document.header, "\\paperfontsize", 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
document.warning("Malformed LyX document! Missing \\paperfontsize header.")
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
defsizes = ["default", "10", "11", "12"]
|
|
|
|
|
|
|
|
|
|
val = get_value(document.header, "\\paperfontsize", i)
|
|
|
|
|
if val in defsizes:
|
|
|
|
|
# nothing to do
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
document.header[i] = "\\paperfontsize default"
|
|
|
|
|
|
|
|
|
|
fsize = "fontsize=" + val
|
|
|
|
|
|
|
|
|
|
i = find_token(document.header, "\\options", 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
i = find_token(document.header, "\\textclass", 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
document.warning("Malformed LyX document! Missing \\textclass header.")
|
|
|
|
|
return
|
|
|
|
|
document.header.insert(i, "\\options " + fsize)
|
|
|
|
|
return
|
|
|
|
|
document.header[i] = document.header[i] + "," + fsize
|
|
|
|
|
|
2019-08-07 11:00:29 +00:00
|
|
|
|
|
|
|
|
|
def revert_dupqualicites(document):
|
|
|
|
|
" Revert qualified citation list commands with duplicate keys to ERT "
|
|
|
|
|
|
|
|
|
|
# LyX 2.3 only supports qualified citation lists with unique keys. Thus,
|
|
|
|
|
# we need to revert those with multiple uses of the same key.
|
|
|
|
|
|
|
|
|
|
# Get cite engine
|
|
|
|
|
engine = "basic"
|
|
|
|
|
i = find_token(document.header, "\\cite_engine", 0)
|
|
|
|
|
if i == -1:
|
|
|
|
|
document.warning("Malformed document! Missing \\cite_engine")
|
|
|
|
|
else:
|
|
|
|
|
engine = get_value(document.header, "\\cite_engine", i)
|
|
|
|
|
|
|
|
|
|
if not engine in ["biblatex", "biblatex-natbib"]:
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
# Citation insets that support qualified lists, with their LaTeX code
|
|
|
|
|
ql_citations = {
|
|
|
|
|
"cite" : "cites",
|
|
|
|
|
"Cite" : "Cites",
|
|
|
|
|
"citet" : "textcites",
|
|
|
|
|
"Citet" : "Textcites",
|
|
|
|
|
"citep" : "parencites",
|
|
|
|
|
"Citep" : "Parencites",
|
|
|
|
|
"Footcite" : "Smartcites",
|
|
|
|
|
"footcite" : "smartcites",
|
|
|
|
|
"Autocite" : "Autocites",
|
|
|
|
|
"autocite" : "autocites",
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
i = 0
|
|
|
|
|
while (True):
|
|
|
|
|
i = find_token(document.body, "\\begin_inset CommandInset citation", i)
|
|
|
|
|
if i == -1:
|
|
|
|
|
break
|
|
|
|
|
j = find_end_of_inset(document.body, i)
|
|
|
|
|
if j == -1:
|
|
|
|
|
document.warning("Can't find end of citation inset at line %d!!" %(i))
|
|
|
|
|
i += 1
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
k = find_token(document.body, "LatexCommand", i, j)
|
|
|
|
|
if k == -1:
|
|
|
|
|
document.warning("Can't find LatexCommand for citation inset at line %d!" %(i))
|
|
|
|
|
i = j + 1
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
cmd = get_value(document.body, "LatexCommand", k)
|
|
|
|
|
if not cmd in list(ql_citations.keys()):
|
|
|
|
|
i = j + 1
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
pres = find_token(document.body, "pretextlist", i, j)
|
|
|
|
|
posts = find_token(document.body, "posttextlist", i, j)
|
|
|
|
|
if pres == -1 and posts == -1:
|
|
|
|
|
# nothing to do.
|
|
|
|
|
i = j + 1
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
key = get_quoted_value(document.body, "key", i, j)
|
|
|
|
|
if not key:
|
|
|
|
|
document.warning("Citation inset at line %d does not have a key!" %(i))
|
|
|
|
|
i = j + 1
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
keys = key.split(",")
|
|
|
|
|
ukeys = list(set(keys))
|
|
|
|
|
if len(keys) == len(ukeys):
|
|
|
|
|
# no duplicates.
|
|
|
|
|
i = j + 1
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
pretexts = get_quoted_value(document.body, "pretextlist", pres)
|
|
|
|
|
posttexts = get_quoted_value(document.body, "posttextlist", posts)
|
|
|
|
|
|
|
|
|
|
pre = get_quoted_value(document.body, "before", i, j)
|
|
|
|
|
post = get_quoted_value(document.body, "after", i, j)
|
|
|
|
|
prelist = pretexts.split("\t")
|
|
|
|
|
premap = dict()
|
|
|
|
|
for pp in prelist:
|
|
|
|
|
ppp = pp.split(" ", 1)
|
|
|
|
|
val = ""
|
|
|
|
|
if len(ppp) > 1:
|
|
|
|
|
val = ppp[1]
|
|
|
|
|
else:
|
|
|
|
|
val = ""
|
|
|
|
|
if ppp[0] in premap:
|
|
|
|
|
premap[ppp[0]] = premap[ppp[0]] + "\t" + val
|
|
|
|
|
else:
|
|
|
|
|
premap[ppp[0]] = val
|
|
|
|
|
postlist = posttexts.split("\t")
|
|
|
|
|
postmap = dict()
|
|
|
|
|
num = 1
|
|
|
|
|
for pp in postlist:
|
|
|
|
|
ppp = pp.split(" ", 1)
|
|
|
|
|
val = ""
|
|
|
|
|
if len(ppp) > 1:
|
|
|
|
|
val = ppp[1]
|
|
|
|
|
else:
|
|
|
|
|
val = ""
|
|
|
|
|
if ppp[0] in postmap:
|
|
|
|
|
postmap[ppp[0]] = postmap[ppp[0]] + "\t" + val
|
|
|
|
|
else:
|
|
|
|
|
postmap[ppp[0]] = val
|
|
|
|
|
# Replace known new commands with ERT
|
|
|
|
|
if "(" in pre or ")" in pre:
|
|
|
|
|
pre = "{" + pre + "}"
|
|
|
|
|
if "(" in post or ")" in post:
|
|
|
|
|
post = "{" + post + "}"
|
|
|
|
|
res = "\\" + ql_citations[cmd]
|
|
|
|
|
if pre:
|
|
|
|
|
res += "(" + pre + ")"
|
|
|
|
|
if post:
|
|
|
|
|
res += "(" + post + ")"
|
|
|
|
|
elif pre:
|
|
|
|
|
res += "()"
|
|
|
|
|
for kk in keys:
|
|
|
|
|
if premap.get(kk, "") != "":
|
|
|
|
|
akeys = premap[kk].split("\t", 1)
|
|
|
|
|
akey = akeys[0]
|
|
|
|
|
if akey != "":
|
|
|
|
|
res += "[" + akey + "]"
|
|
|
|
|
if len(akeys) > 1:
|
|
|
|
|
premap[kk] = "\t".join(akeys[1:])
|
|
|
|
|
else:
|
|
|
|
|
premap[kk] = ""
|
|
|
|
|
if postmap.get(kk, "") != "":
|
|
|
|
|
akeys = postmap[kk].split("\t", 1)
|
|
|
|
|
akey = akeys[0]
|
|
|
|
|
if akey != "":
|
|
|
|
|
res += "[" + akey + "]"
|
|
|
|
|
if len(akeys) > 1:
|
|
|
|
|
postmap[kk] = "\t".join(akeys[1:])
|
|
|
|
|
else:
|
|
|
|
|
postmap[kk] = ""
|
|
|
|
|
elif premap.get(kk, "") != "":
|
|
|
|
|
res += "[]"
|
|
|
|
|
res += "{" + kk + "}"
|
|
|
|
|
document.body[i:j+1] = put_cmd_in_ert([res])
|
|
|
|
|
|
2019-08-06 16:18:37 +00:00
|
|
|
|
|
|
|
|
|
|
2018-02-23 07:58:16 +00:00
|
|
|
|
##
|
|
|
|
|
# Conversion hub
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
supported_versions = ["2.4.0", "2.4"]
|
|
|
|
|
convert = [
|
2018-03-10 18:59:48 +00:00
|
|
|
|
[545, [convert_lst_literalparam]],
|
2018-03-15 14:44:49 +00:00
|
|
|
|
[546, []],
|
2018-04-18 12:36:49 +00:00
|
|
|
|
[547, []],
|
2018-04-21 14:28:15 +00:00
|
|
|
|
[548, []],
|
2018-04-22 17:06:46 +00:00
|
|
|
|
[549, []],
|
2018-05-06 17:48:21 +00:00
|
|
|
|
[550, [convert_fontenc]],
|
2018-05-10 18:15:11 +00:00
|
|
|
|
[551, []],
|
2018-05-21 11:43:16 +00:00
|
|
|
|
[552, []],
|
2018-06-24 08:05:15 +00:00
|
|
|
|
[553, []],
|
2018-07-01 17:18:38 +00:00
|
|
|
|
[554, []],
|
2018-07-07 13:25:35 +00:00
|
|
|
|
[555, []],
|
2018-07-29 17:41:34 +00:00
|
|
|
|
[556, []],
|
2018-07-30 11:44:01 +00:00
|
|
|
|
[557, [convert_vcsinfo]],
|
2018-08-05 07:51:12 +00:00
|
|
|
|
[558, [removeFrontMatterStyles]],
|
2018-08-07 10:14:45 +00:00
|
|
|
|
[559, []],
|
2018-08-10 17:38:06 +00:00
|
|
|
|
[560, []],
|
2018-08-20 13:47:49 +00:00
|
|
|
|
[561, [convert_latexFonts]], # Handle dejavu, ibmplex fonts in GUI
|
2018-08-17 08:22:32 +00:00
|
|
|
|
[562, []],
|
2018-09-20 09:33:03 +00:00
|
|
|
|
[563, []],
|
2018-10-02 15:24:47 +00:00
|
|
|
|
[564, []],
|
|
|
|
|
[565, [convert_AdobeFonts]], # Handle adobe fonts in GUI
|
2018-10-30 11:33:35 +00:00
|
|
|
|
[566, [convert_hebrew_parentheses]],
|
2019-03-10 09:21:59 +00:00
|
|
|
|
[567, []],
|
2019-03-26 15:23:34 +00:00
|
|
|
|
[568, []],
|
2019-03-29 14:45:55 +00:00
|
|
|
|
[569, []],
|
2019-04-03 05:59:52 +00:00
|
|
|
|
[570, []],
|
2019-04-07 09:05:42 +00:00
|
|
|
|
[571, []],
|
2019-04-16 18:17:32 +00:00
|
|
|
|
[572, [convert_notoFonts]], # Added options thin, light, extralight for Noto
|
|
|
|
|
[573, [convert_inputencoding_namechange]],
|
2019-05-15 15:32:09 +00:00
|
|
|
|
[574, [convert_ruby_module, convert_utf8_japanese]],
|
2019-05-24 11:49:32 +00:00
|
|
|
|
[575, [convert_lineno]],
|
2019-06-03 14:43:16 +00:00
|
|
|
|
[576, []],
|
2019-06-23 10:59:56 +00:00
|
|
|
|
[577, [convert_linggloss]],
|
2019-07-11 11:21:32 +00:00
|
|
|
|
[578, []],
|
2019-07-11 18:28:34 +00:00
|
|
|
|
[579, []],
|
2019-07-14 09:41:36 +00:00
|
|
|
|
[580, []],
|
2019-07-14 19:44:58 +00:00
|
|
|
|
[581, [convert_osf]],
|
2019-07-15 11:29:09 +00:00
|
|
|
|
[582, [convert_AdobeFonts,convert_latexFonts,convert_notoFonts,convert_CantarellFont,convert_FiraFont]],# old font re-converterted due to extra options
|
2019-07-18 08:50:46 +00:00
|
|
|
|
[583, [convert_ChivoFont,convert_Semibolds,convert_NotoRegulars,convert_CrimsonProFont]],
|
2019-07-28 20:01:17 +00:00
|
|
|
|
[584, []],
|
2019-08-07 11:00:29 +00:00
|
|
|
|
[585, [convert_pagesizes]],
|
|
|
|
|
[586, []]
|
2018-02-23 07:58:16 +00:00
|
|
|
|
]
|
|
|
|
|
|
2019-08-07 11:00:29 +00:00
|
|
|
|
revert = [[585, [revert_dupqualicites]],
|
|
|
|
|
[584, [revert_pagesizes,revert_komafontsizes]],
|
2019-08-06 16:18:37 +00:00
|
|
|
|
[583, [revert_vcsinfo_rev_abbrev]],
|
2019-07-28 20:01:17 +00:00
|
|
|
|
[582, [revert_ChivoFont,revert_CrimsonProFont]],
|
2019-07-17 16:03:31 +00:00
|
|
|
|
[581, [revert_CantarellFont,revert_FiraFont]],
|
2019-07-14 19:44:58 +00:00
|
|
|
|
[580, [revert_texfontopts,revert_osf]],
|
2019-07-14 09:41:36 +00:00
|
|
|
|
[579, [revert_minionpro, revert_plainNotoFonts_xopts, revert_notoFonts_xopts, revert_IBMFonts_xopts, revert_AdobeFonts_xopts, revert_font_opts]], # keep revert_font_opts last!
|
2019-07-11 18:28:34 +00:00
|
|
|
|
[578, [revert_babelfont]],
|
2019-07-11 11:21:32 +00:00
|
|
|
|
[577, [revert_drs]],
|
2019-06-23 10:59:56 +00:00
|
|
|
|
[576, [revert_linggloss, revert_subexarg]],
|
2019-06-04 09:01:19 +00:00
|
|
|
|
[575, [revert_new_languages]],
|
2019-06-03 14:43:16 +00:00
|
|
|
|
[574, [revert_lineno]],
|
2019-05-23 13:13:27 +00:00
|
|
|
|
[573, [revert_ruby_module, revert_utf8_japanese]],
|
2019-05-15 15:32:09 +00:00
|
|
|
|
[572, [revert_inputencoding_namechange]],
|
2019-04-07 09:05:42 +00:00
|
|
|
|
[571, [revert_notoFonts]],
|
2019-04-03 05:59:52 +00:00
|
|
|
|
[570, [revert_cmidruletrimming]],
|
2019-03-29 14:45:55 +00:00
|
|
|
|
[569, [revert_bibfileencodings]],
|
2019-03-26 15:23:34 +00:00
|
|
|
|
[568, [revert_tablestyle]],
|
2019-03-22 17:29:50 +00:00
|
|
|
|
[567, [revert_soul]],
|
2019-03-10 09:21:59 +00:00
|
|
|
|
[566, [revert_malayalam]],
|
2018-10-30 11:33:35 +00:00
|
|
|
|
[565, [revert_hebrew_parentheses]],
|
2018-10-02 15:24:47 +00:00
|
|
|
|
[564, [revert_AdobeFonts]],
|
2018-09-20 09:33:03 +00:00
|
|
|
|
[563, [revert_lformatinfo]],
|
2018-08-17 08:22:32 +00:00
|
|
|
|
[562, [revert_listpargs]],
|
2018-08-13 15:18:44 +00:00
|
|
|
|
[561, [revert_l7ninfo]],
|
2018-08-20 13:47:49 +00:00
|
|
|
|
[560, [revert_latexFonts]], # Handle dejavu, ibmplex fonts in user preamble
|
2018-08-10 15:10:59 +00:00
|
|
|
|
[559, [revert_timeinfo, revert_namenoextinfo]],
|
2018-08-05 07:51:12 +00:00
|
|
|
|
[558, [revert_dateinfo]],
|
|
|
|
|
[557, [addFrontMatterStyles]],
|
2018-07-29 17:41:34 +00:00
|
|
|
|
[556, [revert_vcsinfo]],
|
2018-07-07 13:25:35 +00:00
|
|
|
|
[555, [revert_bibencoding]],
|
2018-07-01 17:18:38 +00:00
|
|
|
|
[554, [revert_vcolumns]],
|
2018-06-24 08:05:15 +00:00
|
|
|
|
[553, [revert_stretchcolumn]],
|
2018-05-21 11:43:16 +00:00
|
|
|
|
[552, [revert_tuftecite]],
|
2018-05-10 18:15:11 +00:00
|
|
|
|
[551, [revert_floatpclass, revert_floatalignment]],
|
|
|
|
|
[550, [revert_nospellcheck]],
|
2018-04-22 17:06:46 +00:00
|
|
|
|
[549, [revert_fontenc]],
|
2018-04-21 14:28:15 +00:00
|
|
|
|
[548, []],# dummy format change
|
2018-04-18 12:36:49 +00:00
|
|
|
|
[547, [revert_lscape]],
|
2018-03-15 14:44:49 +00:00
|
|
|
|
[546, [revert_xcharter]],
|
2018-03-10 18:59:48 +00:00
|
|
|
|
[545, [revert_paratype]],
|
2018-02-23 07:58:16 +00:00
|
|
|
|
[544, [revert_lst_literalparam]]
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
|
pass
|