A go at creating a prefs2prefs framework. There's a main file, prefs2prefs.py, and two subsidiary files,
prefs2prefs_lfuns.py and prefs2prefs_prefs.py. I've organized it this way because, in many ways, these are
the same task. It's very line-by-line, unlike lyx2lyx and layout2layout, where things can be more "global".
So we read the file, line by line, and give a bunch of converter functions a chance to see if they want to
modify that line.
The converter functions are all in the subsidiary files. (Only the lfun one has anything in it now.) They
take a line as argument and return a list: (Bool, NewLine), where the Bool says if we've modified anything
and the NewLine is the new line, if so.
The format of the existing files is format 0, and we'll introduce new format numbers as we proceed,
just as with layout2layout. So the conversion from format 0 to format 1 will be huge; others will
generally be simple.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35426 a592a061-630c-0410-9148-cb99ea01b6c8
2010-09-17 14:44:38 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2012-05-22 12:58:55 +00:00
|
|
|
# file prefs2prefs-prefs.py
|
A go at creating a prefs2prefs framework. There's a main file, prefs2prefs.py, and two subsidiary files,
prefs2prefs_lfuns.py and prefs2prefs_prefs.py. I've organized it this way because, in many ways, these are
the same task. It's very line-by-line, unlike lyx2lyx and layout2layout, where things can be more "global".
So we read the file, line by line, and give a bunch of converter functions a chance to see if they want to
modify that line.
The converter functions are all in the subsidiary files. (Only the lfun one has anything in it now.) They
take a line as argument and return a list: (Bool, NewLine), where the Bool says if we've modified anything
and the NewLine is the new line, if so.
The format of the existing files is format 0, and we'll introduce new format numbers as we proceed,
just as with layout2layout. So the conversion from format 0 to format 1 will be huge; others will
generally be simple.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35426 a592a061-630c-0410-9148-cb99ea01b6c8
2010-09-17 14:44:38 +00:00
|
|
|
# This file is part of LyX, the document processor.
|
|
|
|
# Licence details can be found in the file COPYING.
|
|
|
|
|
|
|
|
# author Richard Heck
|
|
|
|
|
|
|
|
# Full author contact details are available in file CREDITS
|
|
|
|
|
|
|
|
# This file houses conversion information for the preferences file.
|
|
|
|
|
2019-07-19 15:23:20 +00:00
|
|
|
# The converter functions take a line as argument and return a list:
|
|
|
|
# (Bool, NewLine),
|
|
|
|
# where the Bool says if we've modified anything and the NewLine is
|
A go at creating a prefs2prefs framework. There's a main file, prefs2prefs.py, and two subsidiary files,
prefs2prefs_lfuns.py and prefs2prefs_prefs.py. I've organized it this way because, in many ways, these are
the same task. It's very line-by-line, unlike lyx2lyx and layout2layout, where things can be more "global".
So we read the file, line by line, and give a bunch of converter functions a chance to see if they want to
modify that line.
The converter functions are all in the subsidiary files. (Only the lfun one has anything in it now.) They
take a line as argument and return a list: (Bool, NewLine), where the Bool says if we've modified anything
and the NewLine is the new line, if so.
The format of the existing files is format 0, and we'll introduce new format numbers as we proceed,
just as with layout2layout. So the conversion from format 0 to format 1 will be huge; others will
generally be simple.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35426 a592a061-630c-0410-9148-cb99ea01b6c8
2010-09-17 14:44:38 +00:00
|
|
|
# the new line, if so, which will be used to replace the old line.
|
|
|
|
|
2011-09-13 20:42:23 +00:00
|
|
|
# Incremented to format 2, r39670 by jrioux
|
|
|
|
# Support for multiple file extensions per format.
|
|
|
|
# No conversion necessary.
|
|
|
|
|
2011-09-19 00:12:09 +00:00
|
|
|
# Incremented to format 3, r39705 by tommaso
|
|
|
|
# Support for file formats that are natively (g)zipped.
|
|
|
|
# We must add the flag zipped=native to formats that
|
|
|
|
# were previously hardcoded in the C++ source: dia.
|
|
|
|
|
2011-10-27 11:48:16 +00:00
|
|
|
# Incremented to format 4, r40028 by vfr
|
|
|
|
# Remove support for default paper size.
|
|
|
|
|
2011-10-27 11:52:11 +00:00
|
|
|
# Incremented to format 5, r40030 by vfr
|
|
|
|
# Add a default length unit.
|
|
|
|
# No conversion necessary.
|
|
|
|
|
2011-12-18 11:51:26 +00:00
|
|
|
# Incremented to format 6, r40515 by younes
|
|
|
|
# Add use_qimage option.
|
|
|
|
# No conversion necessary.
|
2011-10-27 11:52:11 +00:00
|
|
|
|
2012-02-21 20:29:44 +00:00
|
|
|
# Incremented to format 7, r40789 by gb
|
|
|
|
# Add mime type to file format
|
2011-01-31 19:42:50 +00:00
|
|
|
|
2012-05-22 12:57:25 +00:00
|
|
|
# Incremented to format 8, 288c1e0f by rgh
|
2012-05-22 12:23:27 +00:00
|
|
|
# Add "nice" flag for converters
|
2012-05-22 13:02:12 +00:00
|
|
|
# No conversion necessary.
|
2012-05-22 12:23:27 +00:00
|
|
|
|
2012-08-08 08:07:31 +00:00
|
|
|
# Incremented to format 9, a18af620 by spitz
|
2012-08-08 07:31:46 +00:00
|
|
|
# Remove default_language rc.
|
|
|
|
|
2012-09-30 14:06:21 +00:00
|
|
|
# Incremented to format 10, 4985015 by tommaso
|
|
|
|
# Add close_buffer_with_last_view in preferences.
|
|
|
|
# No conversion necessary.
|
|
|
|
|
2013-03-21 19:13:02 +00:00
|
|
|
# Incremented to format 11, by gb
|
|
|
|
# Split pdf format into pdf and pdf6
|
|
|
|
|
2012-05-08 15:55:59 +00:00
|
|
|
# Incremented to format 12, by vfr
|
|
|
|
# Add option to use the system's theme icons
|
|
|
|
# No conversion necessary.
|
|
|
|
|
2013-05-25 16:02:21 +00:00
|
|
|
# Incremented to format 13, by bh
|
|
|
|
# Rename mac_like_word_movement to mac_like_cursor_movement
|
|
|
|
|
2013-06-02 10:06:01 +00:00
|
|
|
# Incremented to format 14, by spitz
|
|
|
|
# New RC default_otf_view_format
|
|
|
|
# No conversion necessary.
|
|
|
|
|
2014-07-08 21:12:09 +00:00
|
|
|
# Incremented to format 15, by prannoy
|
|
|
|
# Add fullscreen_statusbar
|
|
|
|
# No conversion necessary.
|
|
|
|
|
|
|
|
# Incremented to format 16, by lasgouttes
|
|
|
|
# Remove force_paint_single_char rc.
|
|
|
|
|
2014-07-09 18:12:06 +00:00
|
|
|
# Incremented to format 17, by lasgouttes
|
|
|
|
# Remove rtl_support rc.
|
|
|
|
|
2015-05-23 16:24:26 +00:00
|
|
|
# Incremented to format 18, by ef
|
|
|
|
# Add option to allow saving the document directory
|
|
|
|
# No conversion necessary.
|
|
|
|
|
2015-11-07 06:48:47 +00:00
|
|
|
# Incremented to format 19, by rgh
|
|
|
|
# remove print support
|
|
|
|
|
2016-11-25 22:33:08 +00:00
|
|
|
# Incremented to format 20, by tommaso
|
|
|
|
# Add options to forbid/ignore 'needauth' option
|
|
|
|
# No conversion necessary.
|
|
|
|
|
2017-01-14 11:13:33 +00:00
|
|
|
# Incremented to format 21, by spitz
|
|
|
|
# Add jbibtex_alternatives, allow "automatic" value
|
|
|
|
# of bibtex_command and jbibtex_command (actually the
|
|
|
|
# default now)
|
2017-04-23 19:02:39 +00:00
|
|
|
# No conversion necessary.
|
2017-01-14 11:13:33 +00:00
|
|
|
|
2017-06-12 15:24:26 +00:00
|
|
|
# Incremented to format 22, by ef
|
|
|
|
# Add pygmentize_command for the python pygments syntax highlighter
|
|
|
|
# No conversion necessary.
|
|
|
|
|
2017-09-09 06:56:04 +00:00
|
|
|
# Incremented to format 23, by spitz
|
|
|
|
# Add default_platex_view_format, a default output format for
|
|
|
|
# Japanese documents via pLaTeX.
|
|
|
|
# No conversion necessary.
|
|
|
|
|
2017-11-02 15:40:05 +00:00
|
|
|
# Incremented to format 24, by spitz
|
2017-11-02 15:26:45 +00:00
|
|
|
# Rename collapsable to collapsible
|
|
|
|
|
2017-11-02 15:40:05 +00:00
|
|
|
# Incremented to format 25, by lasgouttes
|
|
|
|
# Remove use_qimage preference
|
|
|
|
|
2018-04-22 17:06:46 +00:00
|
|
|
# Incremented to format 26, by spitz
|
|
|
|
# Rename font_encoding preference
|
|
|
|
|
2018-04-25 11:46:05 +00:00
|
|
|
# Incremented to format 27, by spitz
|
|
|
|
# Add optional flavor value to needaux flag
|
|
|
|
|
2018-08-20 07:25:22 +00:00
|
|
|
# Incremented to format 28, by spitz
|
|
|
|
# Remove date_insert_format
|
|
|
|
|
2018-10-07 12:48:05 +00:00
|
|
|
# Incremented to format 29, by lasgouttes
|
|
|
|
# Remove use_pixmap_cache
|
|
|
|
|
2019-07-19 15:23:20 +00:00
|
|
|
# Incremented to format 30, by lasgouttes
|
|
|
|
# Add respect_os_kbd_language.
|
|
|
|
# No convergence necessary.
|
|
|
|
|
2019-12-27 09:35:52 +00:00
|
|
|
# Incremented to format 31, by spitz
|
|
|
|
# Add ct_additions_underlined.
|
|
|
|
# No convergence necessary.
|
|
|
|
|
2014-03-19 15:04:46 +00:00
|
|
|
# NOTE: The format should also be updated in LYXRC.cpp and
|
|
|
|
# in configure.py.
|
|
|
|
|
2012-02-21 20:29:44 +00:00
|
|
|
import re
|
A go at creating a prefs2prefs framework. There's a main file, prefs2prefs.py, and two subsidiary files,
prefs2prefs_lfuns.py and prefs2prefs_prefs.py. I've organized it this way because, in many ways, these are
the same task. It's very line-by-line, unlike lyx2lyx and layout2layout, where things can be more "global".
So we read the file, line by line, and give a bunch of converter functions a chance to see if they want to
modify that line.
The converter functions are all in the subsidiary files. (Only the lfun one has anything in it now.) They
take a line as argument and return a list: (Bool, NewLine), where the Bool says if we've modified anything
and the NewLine is the new line, if so.
The format of the existing files is format 0, and we'll introduce new format numbers as we proceed,
just as with layout2layout. So the conversion from format 0 to format 1 will be huge; others will
generally be simple.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35426 a592a061-630c-0410-9148-cb99ea01b6c8
2010-09-17 14:44:38 +00:00
|
|
|
|
|
|
|
###########################################################
|
|
|
|
#
|
|
|
|
# Conversion chain
|
|
|
|
|
2012-02-21 20:29:44 +00:00
|
|
|
def get_format(line):
|
|
|
|
entries = []
|
|
|
|
i = 0
|
|
|
|
while i < len(line):
|
|
|
|
if line[i] == '"':
|
|
|
|
beg = i + 1
|
|
|
|
i = i + 1
|
|
|
|
while i < len(line) and line[i] != '"':
|
|
|
|
if line[i] == '\\' and i < len(line) - 1 and line[i+1] == '"':
|
|
|
|
# convert \" to "
|
|
|
|
i = i + 1
|
|
|
|
i = i + 1
|
|
|
|
end = i
|
|
|
|
entries.append(line[beg:end].replace('\\"', '"'))
|
|
|
|
elif line[i] == '#':
|
|
|
|
return entries
|
|
|
|
elif not line[i].isspace():
|
|
|
|
beg = i
|
2013-03-23 13:35:26 +00:00
|
|
|
while i < len(line) and not line[i].isspace():
|
2012-02-21 20:29:44 +00:00
|
|
|
i = i + 1
|
|
|
|
end = i
|
|
|
|
entries.append(line[beg:end])
|
|
|
|
i = i + 1
|
|
|
|
return entries
|
|
|
|
|
|
|
|
|
2011-01-18 19:35:54 +00:00
|
|
|
def simple_renaming(line, old, new):
|
2012-01-22 10:40:56 +00:00
|
|
|
i = line.lower().find(old.lower())
|
|
|
|
if i == -1:
|
2011-01-18 19:35:54 +00:00
|
|
|
return no_match
|
2012-01-22 10:40:56 +00:00
|
|
|
line = line[:i] + new + line[i+len(old):]
|
2011-01-18 19:35:54 +00:00
|
|
|
return (True, line)
|
|
|
|
|
2011-01-16 03:59:43 +00:00
|
|
|
no_match = (False, [])
|
|
|
|
|
2012-05-22 13:02:12 +00:00
|
|
|
######################################
|
|
|
|
### Format 1 conversions (for LyX 2.0)
|
2011-01-18 19:35:54 +00:00
|
|
|
|
2011-01-16 03:59:43 +00:00
|
|
|
def remove_obsolete(line):
|
2011-01-18 16:50:43 +00:00
|
|
|
tags = ("\\use_tempdir", "\\spell_command", "\\personal_dictionary",
|
2015-05-27 22:10:38 +00:00
|
|
|
"\\plaintext_roff_command", "\\use_alt_language",
|
|
|
|
"\\use_escape_chars", "\\use_input_encoding",
|
|
|
|
"\\use_personal_dictionary", "\\use_pspell",
|
|
|
|
"\\use_spell_lib")
|
2012-01-22 10:40:56 +00:00
|
|
|
line = line.lower().lstrip()
|
2011-01-18 16:50:43 +00:00
|
|
|
for tag in tags:
|
2012-01-22 10:40:56 +00:00
|
|
|
if line.lower().startswith(tag):
|
2011-01-18 16:50:43 +00:00
|
|
|
return (True, "")
|
|
|
|
return no_match
|
|
|
|
|
2012-05-22 13:02:12 +00:00
|
|
|
|
2011-01-18 16:50:43 +00:00
|
|
|
def language_use_babel(line):
|
2012-01-22 10:40:56 +00:00
|
|
|
if not line.lower().startswith("\language_use_babel"):
|
2011-01-18 16:50:43 +00:00
|
|
|
return no_match
|
2012-01-22 10:40:56 +00:00
|
|
|
re_lub = re.compile(r'^\\language_use_babel\s+"?(true|false)', re.IGNORECASE)
|
2011-01-18 16:50:43 +00:00
|
|
|
m = re_lub.match(line)
|
|
|
|
val = m.group(1)
|
|
|
|
newval = '0'
|
|
|
|
if val == 'false':
|
|
|
|
newval = '3'
|
|
|
|
newline = "\\language_package_selection " + newval
|
|
|
|
return (True, newline)
|
2011-01-16 03:59:43 +00:00
|
|
|
|
2012-05-22 13:02:12 +00:00
|
|
|
|
2011-01-18 19:35:54 +00:00
|
|
|
def language_package(line):
|
|
|
|
return simple_renaming(line, "\\language_package", "\\language_custom_package")
|
|
|
|
|
2012-05-22 13:02:12 +00:00
|
|
|
|
2012-01-22 10:40:56 +00:00
|
|
|
lfre = re.compile(r'^\\converter\s+"?(\w+)"?\s+"?(\w+)"?\s+"([^"]*?)"\s+"latex"', re.IGNORECASE)
|
2011-01-31 19:42:50 +00:00
|
|
|
def latex_flavor(line):
|
2012-01-22 10:40:56 +00:00
|
|
|
if not line.lower().startswith("\\converter"):
|
2011-01-31 19:42:50 +00:00
|
|
|
return no_match
|
|
|
|
m = lfre.match(line)
|
|
|
|
if not m:
|
|
|
|
return no_match
|
|
|
|
conv = m.group(1)
|
|
|
|
fmat = m.group(2)
|
|
|
|
args = m.group(3)
|
2011-06-07 15:11:18 +00:00
|
|
|
conv2fl = {
|
|
|
|
"luatex": "lualatex",
|
|
|
|
"pplatex": "latex",
|
|
|
|
"xetex": "xelatex",
|
|
|
|
}
|
|
|
|
if conv in conv2fl.keys():
|
|
|
|
flavor = conv2fl[conv]
|
|
|
|
else:
|
2011-01-31 19:42:50 +00:00
|
|
|
flavor = conv
|
2011-06-07 15:11:18 +00:00
|
|
|
if flavor == "latex":
|
|
|
|
return no_match
|
|
|
|
return (True,
|
2011-01-31 19:42:50 +00:00
|
|
|
"\\converter \"%s\" \"%s\" \"%s\" \"latex=%s\"" % (conv, fmat, args, flavor))
|
|
|
|
|
2012-05-22 13:02:12 +00:00
|
|
|
|
2012-01-22 10:40:56 +00:00
|
|
|
emre = re.compile(r'^\\format\s+(.*)\s+"(document[^"]*?)"', re.IGNORECASE)
|
2011-06-07 15:01:00 +00:00
|
|
|
def export_menu(line):
|
|
|
|
if not line.lower().startswith("\\format"):
|
|
|
|
return no_match
|
|
|
|
m = emre.match(line)
|
|
|
|
if not m:
|
|
|
|
return no_match
|
|
|
|
fmat = m.group(1)
|
|
|
|
opts = m.group(2)
|
|
|
|
return (True,
|
|
|
|
"\\Format %s \"%s,menu=export\"" % (fmat, opts))
|
2011-01-18 19:35:54 +00:00
|
|
|
|
2012-05-22 13:02:12 +00:00
|
|
|
# End format 1 conversions (for LyX 2.0)
|
|
|
|
########################################
|
|
|
|
|
|
|
|
#################################
|
|
|
|
# Conversions from LyX 2.0 to 2.1
|
2012-01-22 10:40:56 +00:00
|
|
|
zipre = re.compile(r'^\\format\s+("?dia"?\s+.*)\s+"([^"]*?)"', re.IGNORECASE)
|
2011-09-19 00:12:09 +00:00
|
|
|
def zipped_native(line):
|
|
|
|
if not line.lower().startswith("\\format"):
|
|
|
|
return no_match
|
|
|
|
m = zipre.match(line)
|
|
|
|
if not m:
|
|
|
|
return no_match
|
|
|
|
fmat = m.group(1)
|
|
|
|
opts = m.group(2)
|
|
|
|
return (True,
|
|
|
|
"\\Format %s \"%s,zipped=native\"" % (fmat, opts))
|
|
|
|
|
2011-10-27 11:48:16 +00:00
|
|
|
def remove_default_papersize(line):
|
2012-01-22 10:40:56 +00:00
|
|
|
if not line.lower().startswith("\\default_papersize"):
|
2011-10-27 11:48:16 +00:00
|
|
|
return no_match
|
|
|
|
return (True, "")
|
|
|
|
|
2012-02-21 20:29:44 +00:00
|
|
|
def add_mime_types(line):
|
|
|
|
if not line.lower().startswith("\\format"):
|
|
|
|
return no_match
|
|
|
|
entries = get_format(line)
|
|
|
|
converted = line
|
|
|
|
i = len(entries)
|
|
|
|
while i < 7:
|
|
|
|
converted = converted + ' ""'
|
|
|
|
i = i + 1
|
|
|
|
formats = {'tgif':'application/x-tgif', \
|
|
|
|
'fig':'application/x-xfig', \
|
|
|
|
'dia':'application/x-dia-diagram', \
|
|
|
|
'odg':'application/vnd.oasis.opendocument.graphics', \
|
|
|
|
'svg':'image/svg+xml', \
|
|
|
|
'bmp':'image/x-bmp', \
|
|
|
|
'gif':'image/gif', \
|
|
|
|
'jpg':'image/jpeg', \
|
|
|
|
'pbm':'image/x-portable-bitmap', \
|
|
|
|
'pgm':'image/x-portable-graymap', \
|
|
|
|
'png':'image/x-png', \
|
|
|
|
'ppm':'image/x-portable-pixmap', \
|
|
|
|
'tiff':'image/tiff', \
|
|
|
|
'xbm':'image/x-xbitmap', \
|
|
|
|
'xpm':'image/x-xpixmap', \
|
|
|
|
'docbook-xml':'application/docbook+xml', \
|
|
|
|
'dot':'text/vnd.graphviz', \
|
|
|
|
'ly':'text/x-lilypond', \
|
|
|
|
'latex':'text/x-tex', \
|
|
|
|
'text':'text/plain', \
|
|
|
|
'gnumeric':'application/x-gnumeric', \
|
|
|
|
'excel':'application/vnd.ms-excel', \
|
|
|
|
'oocalc':'application/vnd.oasis.opendocument.spreadsheet', \
|
|
|
|
'xhtml':'application/xhtml+xml', \
|
|
|
|
'bib':'text/x-bibtex', \
|
|
|
|
'eps':'image/x-eps', \
|
|
|
|
'ps':'application/postscript', \
|
|
|
|
'pdf':'application/pdf', \
|
|
|
|
'dvi':'application/x-dvi', \
|
|
|
|
'html':'text/html', \
|
|
|
|
'odt':'application/vnd.oasis.opendocument.text', \
|
|
|
|
'sxw':'application/vnd.sun.xml.writer', \
|
|
|
|
'rtf':'application/rtf', \
|
|
|
|
'doc':'application/msword', \
|
|
|
|
'csv':'text/csv', \
|
|
|
|
'lyx':'application/x-lyx', \
|
|
|
|
'wmf':'image/x-wmf', \
|
|
|
|
'emf':'image/x-emf'}
|
|
|
|
if entries[1] in formats.keys():
|
|
|
|
converted = converted + ' "' + formats[entries[1]] + '"'
|
|
|
|
else:
|
|
|
|
converted = converted + ' ""'
|
|
|
|
return (True, converted)
|
|
|
|
|
2013-03-23 14:31:21 +00:00
|
|
|
re_converter = re.compile(r'^\\converter\s+', re.IGNORECASE)
|
|
|
|
|
2013-03-21 19:13:02 +00:00
|
|
|
def split_pdf_format(line):
|
|
|
|
# strictly speaking, a new format would not require to bump the
|
|
|
|
# version number, but the old pdf format was hardcoded at several
|
|
|
|
# places in the C++ code, so an update seemed like a good idea.
|
|
|
|
if line.lower().startswith("\\format"):
|
|
|
|
entries = get_format(line)
|
|
|
|
if entries[1] == 'pdf':
|
|
|
|
if len(entries) < 6:
|
|
|
|
viewer = ''
|
|
|
|
else:
|
|
|
|
viewer = entries[5]
|
|
|
|
converted = line.replace('application/pdf', '') + '''
|
|
|
|
\Format pdf6 pdf "PDF (graphics)" "" "''' + viewer + '" "" "vector" "application/pdf"'
|
|
|
|
return (True, converted)
|
|
|
|
elif line.lower().startswith("\\viewer_alternatives") or \
|
|
|
|
line.lower().startswith("\\editor_alternatives"):
|
|
|
|
entries = get_format(line)
|
|
|
|
if entries[1] == 'pdf':
|
|
|
|
converted = line + "\n" + entries[0] + ' pdf6 "' + entries[2] + '"'
|
|
|
|
return (True, converted)
|
2013-03-23 14:31:21 +00:00
|
|
|
elif re_converter.match(line):
|
2013-03-21 19:13:02 +00:00
|
|
|
entries = get_format(line)
|
|
|
|
# The only converter from pdf that is touched is pdf->eps:
|
|
|
|
# All other converters are likely meant for further processing on export.
|
|
|
|
# The only converter to pdf that stays untouched is dvi->pdf:
|
|
|
|
# All other converters are likely meant for graphics.
|
2013-03-23 13:35:26 +00:00
|
|
|
if len(entries) > 2 and \
|
|
|
|
((entries[1] == 'pdf' and entries[2] == 'eps') or \
|
|
|
|
(entries[1] != 'ps' and entries[2] == 'pdf')):
|
2013-03-21 19:13:02 +00:00
|
|
|
if entries[1] == 'pdf':
|
|
|
|
converted = entries[0] + ' pdf6 ' + entries[2]
|
|
|
|
else:
|
|
|
|
converted = entries[0] + ' ' + entries[1] + ' pdf6'
|
|
|
|
i = 3
|
|
|
|
while i < len(entries):
|
|
|
|
converted = converted + ' "' + entries[i] + '"'
|
|
|
|
i = i + 1
|
|
|
|
return (True, converted)
|
|
|
|
return no_match
|
|
|
|
|
2012-08-08 07:31:46 +00:00
|
|
|
def remove_default_language(line):
|
|
|
|
if not line.lower().startswith("\\default_language"):
|
|
|
|
return no_match
|
|
|
|
return (True, "")
|
|
|
|
|
2013-05-25 16:02:21 +00:00
|
|
|
def mac_cursor_movement(line):
|
|
|
|
return simple_renaming(line, "\\mac_like_word_movement", "\\mac_like_cursor_movement")
|
2012-08-08 07:31:46 +00:00
|
|
|
|
2012-05-22 13:02:12 +00:00
|
|
|
# End conversions for LyX 2.0 to 2.1
|
|
|
|
####################################
|
2011-01-18 19:35:54 +00:00
|
|
|
|
|
|
|
|
2014-07-08 21:12:09 +00:00
|
|
|
#################################
|
|
|
|
# Conversions from LyX 2.1 to 2.2
|
|
|
|
|
|
|
|
def remove_force_paint_single_char(line):
|
|
|
|
if not line.lower().startswith("\\force_paint_single_char"):
|
|
|
|
return no_match
|
|
|
|
return (True, "")
|
|
|
|
|
2014-07-09 18:12:06 +00:00
|
|
|
def remove_rtl(line):
|
|
|
|
if not line.lower().startswith("\\rtl "):
|
|
|
|
return no_match
|
|
|
|
return (True, "")
|
|
|
|
|
2015-05-27 22:10:38 +00:00
|
|
|
def remove_print_support(line):
|
|
|
|
tags = ("\\printer", "\\print_adapt_output", "\\print_command",
|
|
|
|
"\\print_evenpage_flag", "\\print_oddpage_flag", "\\print_pagerange_flag",
|
|
|
|
"\\print_copies_flag", "\\print_collcopies_flag", "\\print_reverse_flag",
|
|
|
|
"\\print_to_printer", "\\print_to_file", "\\print_file_extension")
|
|
|
|
line = line.lower().lstrip()
|
|
|
|
for tag in tags:
|
|
|
|
if line.lower().startswith(tag):
|
|
|
|
return (True, "")
|
|
|
|
return no_match
|
|
|
|
|
2014-07-08 21:12:09 +00:00
|
|
|
# End conversions for LyX 2.1 to 2.2
|
|
|
|
####################################
|
|
|
|
|
2017-09-08 14:56:13 +00:00
|
|
|
|
2017-09-09 06:56:04 +00:00
|
|
|
#################################
|
|
|
|
# Conversions from LyX 2.2 to 2.3
|
|
|
|
|
2017-11-02 15:40:05 +00:00
|
|
|
def rename_collapsible(line):
|
|
|
|
return simple_renaming(line, "\\set_color \"collapsable", "\\set_color \"collapsible")
|
2017-09-09 06:56:04 +00:00
|
|
|
|
|
|
|
# End conversions for LyX 2.2 to 2.3
|
|
|
|
####################################
|
|
|
|
|
|
|
|
|
2017-09-08 14:56:13 +00:00
|
|
|
#################################
|
|
|
|
# Conversions from LyX 2.3 to 2.4
|
|
|
|
|
|
|
|
def remove_use_qimage(line):
|
|
|
|
if not line.lower().startswith("\\use_qimage "):
|
|
|
|
return no_match
|
|
|
|
return (True, "")
|
|
|
|
|
2018-04-22 17:06:46 +00:00
|
|
|
def remove_font_encoding(line):
|
|
|
|
if not line.lower().startswith("\\font_encoding "):
|
|
|
|
return no_match
|
|
|
|
return (True, "")
|
|
|
|
|
2018-08-20 07:25:22 +00:00
|
|
|
def remove_date_insert_format(line):
|
|
|
|
if not line.lower().startswith("\\date_insert_format "):
|
|
|
|
return no_match
|
|
|
|
return (True, "")
|
|
|
|
|
2018-10-07 12:48:05 +00:00
|
|
|
def remove_use_pixmap_cache(line):
|
|
|
|
if not line.lower().startswith("\\use_pixmap_cache "):
|
|
|
|
return no_match
|
|
|
|
return (True, "")
|
|
|
|
|
2017-09-08 14:56:13 +00:00
|
|
|
# End conversions for LyX 2.3 to 2.4
|
|
|
|
####################################
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-09-09 06:56:04 +00:00
|
|
|
############################################################
|
|
|
|
# Format-conversion map. Also add empty format changes here.
|
|
|
|
|
A go at creating a prefs2prefs framework. There's a main file, prefs2prefs.py, and two subsidiary files,
prefs2prefs_lfuns.py and prefs2prefs_prefs.py. I've organized it this way because, in many ways, these are
the same task. It's very line-by-line, unlike lyx2lyx and layout2layout, where things can be more "global".
So we read the file, line by line, and give a bunch of converter functions a chance to see if they want to
modify that line.
The converter functions are all in the subsidiary files. (Only the lfun one has anything in it now.) They
take a line as argument and return a list: (Bool, NewLine), where the Bool says if we've modified anything
and the NewLine is the new line, if so.
The format of the existing files is format 0, and we'll introduce new format numbers as we proceed,
just as with layout2layout. So the conversion from format 0 to format 1 will be huge; others will
generally be simple.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35426 a592a061-630c-0410-9148-cb99ea01b6c8
2010-09-17 14:44:38 +00:00
|
|
|
conversions = [
|
2012-05-22 13:02:12 +00:00
|
|
|
[ 1, [ # there were several conversions for format 1
|
2011-06-07 15:01:00 +00:00
|
|
|
export_menu,
|
2011-01-31 19:42:50 +00:00
|
|
|
latex_flavor,
|
2011-01-18 16:50:43 +00:00
|
|
|
remove_obsolete,
|
2011-01-18 19:35:54 +00:00
|
|
|
language_use_babel,
|
|
|
|
language_package
|
2011-09-12 20:43:06 +00:00
|
|
|
]],
|
2012-05-22 12:23:27 +00:00
|
|
|
[ 2, []],
|
|
|
|
[ 3, [ zipped_native ]],
|
|
|
|
[ 4, [ remove_default_papersize ]],
|
|
|
|
[ 5, []],
|
|
|
|
[ 6, []],
|
|
|
|
[ 7, [add_mime_types]],
|
2012-08-08 07:31:46 +00:00
|
|
|
[ 8, []],
|
2012-09-30 14:06:21 +00:00
|
|
|
[ 9, [ remove_default_language ]],
|
2013-03-21 19:13:02 +00:00
|
|
|
[ 10, []],
|
2012-05-08 15:55:59 +00:00
|
|
|
[ 11, [split_pdf_format]],
|
2013-05-25 16:02:21 +00:00
|
|
|
[ 12, []],
|
2013-06-02 10:06:01 +00:00
|
|
|
[ 13, [mac_cursor_movement]],
|
2014-03-20 01:56:30 +00:00
|
|
|
[ 14, []],
|
2014-07-08 21:12:09 +00:00
|
|
|
[ 15, []],
|
2014-07-09 18:12:06 +00:00
|
|
|
[ 16, [remove_force_paint_single_char]],
|
2015-05-23 16:24:26 +00:00
|
|
|
[ 17, [remove_rtl]],
|
2015-05-27 22:10:38 +00:00
|
|
|
[ 18, []],
|
2016-11-25 22:33:08 +00:00
|
|
|
[ 19, [remove_print_support]],
|
2017-01-14 11:13:33 +00:00
|
|
|
[ 20, []],
|
2017-06-12 15:24:26 +00:00
|
|
|
[ 21, []],
|
2017-09-08 14:56:13 +00:00
|
|
|
[ 22, []],
|
2017-09-09 06:56:04 +00:00
|
|
|
[ 23, []],
|
2017-11-02 15:40:05 +00:00
|
|
|
[ 24, [rename_collapsible]],
|
2018-04-22 17:06:46 +00:00
|
|
|
[ 25, [remove_use_qimage]],
|
2018-04-25 11:46:05 +00:00
|
|
|
[ 26, [remove_font_encoding]],
|
2018-08-20 07:25:22 +00:00
|
|
|
[ 27, []],
|
2018-10-07 12:48:05 +00:00
|
|
|
[ 28, [remove_date_insert_format]],
|
2019-07-19 15:23:20 +00:00
|
|
|
[ 29, [remove_use_pixmap_cache]],
|
2019-12-27 09:35:52 +00:00
|
|
|
[ 30, []],
|
|
|
|
[ 31, []]
|
A go at creating a prefs2prefs framework. There's a main file, prefs2prefs.py, and two subsidiary files,
prefs2prefs_lfuns.py and prefs2prefs_prefs.py. I've organized it this way because, in many ways, these are
the same task. It's very line-by-line, unlike lyx2lyx and layout2layout, where things can be more "global".
So we read the file, line by line, and give a bunch of converter functions a chance to see if they want to
modify that line.
The converter functions are all in the subsidiary files. (Only the lfun one has anything in it now.) They
take a line as argument and return a list: (Bool, NewLine), where the Bool says if we've modified anything
and the NewLine is the new line, if so.
The format of the existing files is format 0, and we'll introduce new format numbers as we proceed,
just as with layout2layout. So the conversion from format 0 to format 1 will be huge; others will
generally be simple.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35426 a592a061-630c-0410-9148-cb99ea01b6c8
2010-09-17 14:44:38 +00:00
|
|
|
]
|