]> git.lyx.org Git - lyx.git/blobdiff - lib/scripts/prefs2prefs_prefs.py
Remove profiling.py
[lyx.git] / lib / scripts / prefs2prefs_prefs.py
index 598c06b7945dc8accfb0e533204e74199df8a634..fe7e0a1ff43b7b5ecc5db7392e70dfddc050ac2e 100644 (file)
@@ -1,19 +1,33 @@
-# -*- coding: utf-8 -*-
-
 # file prefs2prefs-prefs.py
 # This file is part of LyX, the document processor.
 # Licence details can be found in the file COPYING.
 
-# author Richard Heck
+# author Richard Kimberly Heck
 
 # Full author contact details are available in file CREDITS
 
 # This file houses conversion information for the preferences file.
 
-# 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
+# There are two kinds of converter functions.
+# 
+# Most of them 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, which will be used to replace the old line.
+# This can be used to erase lines (return (True, "")) or to modify 
+# existing preference lines.
+# 
+# It is also possible for conversion routines to accept the whole
+# list of lines and process that. This is useful (as in the change
+# to format 35) when you need to add a preference if it's not already
+# there.
+
+
+######################################################################
+#
+# FORMAT CHANGES
+#
+######################################################################
 
 # Incremented to format 2, r39670 by jrioux
 #   Support for multiple file extensions per format.
 # Incremented to format 34, by yuriy
 #   Rename *.kmap files for Cyrillic languages
 
+# Incremented to format 35, by spitz
+#   \set_color now takes three arguments
+#   \set_color lyxname x11hexname x11darkhexname
+
+# Incremented to format 36, by rkh
+#   Set spellcheck_continuously to FALSE if it is not otherwise set
+#   (the new default is true, so this keeps behavior the same for 
+#   existing users)
+
+# Incremented to format 37, by chillenb
+#  Remove \fullscreen_width
+#  Remove \fullscreen_limit
+#  Add \screen_width
+#  Add \screen_limit
+
+# Incremented to format 38, by ec
+#   Add option to configure ui style
+#   No conversion necessary.
+
 # NOTE: The format should also be updated in LYXRC.cpp and
-# in configure.py.
+# in configure.py (search for lyxrc_fileformat).
 
 import re
 
@@ -198,7 +231,7 @@ def remove_obsolete(line):
 
 
 def language_use_babel(line):
-       if not line.lower().startswith("\language_use_babel"):
+       if not line.lower().startswith(r"\language_use_babel"):
                return no_match
        re_lub = re.compile(r'^\\language_use_babel\s+"?(true|false)', re.IGNORECASE)
        m = re_lub.match(line)
@@ -236,7 +269,7 @@ def latex_flavor(line):
        if flavor == "latex":
                return no_match
        return (True,
-               "\\converter \"%s\" \"%s\" \"%s\" \"latex=%s\"" % (conv, fmat, args, flavor))
+               f"\\converter \"{conv}\" \"{fmat}\" \"{args}\" \"latex={flavor}\"")
 
 
 emre = re.compile(r'^\\format\s+(.*)\s+"(document[^"]*?)"', re.IGNORECASE)
@@ -249,7 +282,7 @@ def export_menu(line):
        fmat = m.group(1)
        opts = m.group(2)
        return (True,
-               "\\Format %s \"%s,menu=export\"" % (fmat, opts))
+               f"\\Format {fmat} \"{opts},menu=export\"")
 
 # End format 1 conversions (for LyX 2.0)
 ########################################
@@ -266,7 +299,7 @@ def zipped_native(line):
        fmat = m.group(1)
        opts = m.group(2)
        return (True,
-               "\\Format %s \"%s,zipped=native\"" % (fmat, opts))
+               f"\\Format {fmat} \"{opts},zipped=native\"")
 
 def remove_default_papersize(line):
        if not line.lower().startswith("\\default_papersize"):
@@ -339,7 +372,7 @@ def split_pdf_format(line):
                                viewer = ''
                        else:
                                viewer = entries[5]
-                       converted = line.replace('application/pdf', '') + '''
+                       converted = line.replace('application/pdf', '') + r'''
 \Format pdf6       pdf    "PDF (graphics)"        "" "''' + viewer + '"        ""      "vector"        "application/pdf"'
                        return (True, converted)
        elif line.lower().startswith("\\viewer_alternatives") or \
@@ -451,6 +484,28 @@ def rename_cyrillic_kmap_files(line):
        line = line.replace('"koi8-u"', '"ukrainian"')
        return (True, line)
 
+def add_dark_color(line):
+       if not line.lower().startswith("\\set_color "):
+               return no_match
+       colre = re.compile(r'^\\set_color\s+("[^"]+")\s+("[^"]+")\s*$', re.IGNORECASE)
+       m = colre.match(line)
+       if not m:
+               return no_match
+       line += " " + m.group(2)
+       return (True, line)
+
+def add_spellcheck_default(lines):
+       for l in lines:
+               if l.startswith("\\spellcheck_continuously"):
+                       return
+       lines.append("\\spellcheck_continuously false")
+
+def remove_fullscreen_widthlimit(line):
+       lower = line.lower()
+       if lower.startswith("\\fullscreen_width") or lower.startswith("\\fullscreen_limit"):
+               return (True, "")
+       return no_match
+
 # End conversions for LyX 2.3 to 2.4
 ####################################
 
@@ -499,5 +554,9 @@ conversions = [
        [ 31, []],
        [ 32, []],
        [ 33, []],
-       [ 34, [rename_cyrillic_kmap_files]]
+       [ 34, [rename_cyrillic_kmap_files]],
+       [ 35, [add_dark_color]],
+       [ 36, [add_spellcheck_default]],
+       [ 37, [remove_fullscreen_widthlimit]],
+       [ 38, []]
 ]