]> git.lyx.org Git - lyx.git/blobdiff - lib/scripts/prefs2prefs_prefs.py
* layouttranslations.review - review of all langs.
[lyx.git] / lib / scripts / prefs2prefs_prefs.py
index c8497fa3ebe2b5b7d3dd14abcd1d6be6f4abe306..66423ae2714aa7073c7ded7916cbe9f1e668aaa0 100644 (file)
@@ -1,4 +1,3 @@
-#! /usr/bin/env python
 # -*- coding: utf-8 -*-
 
 # file prefs2prefs-prefs.py
 # Incremented to format 11, by gb
 #   Split pdf format into pdf and pdf6
 
+# Incremented to format 12, by vfr
+#   Add option to use the system's theme icons
+#   No conversion necessary.
+
+# Incremented to format 13, by bh
+#   Rename mac_like_word_movement to mac_like_cursor_movement
+
+# Incremented to format 14, by spitz
+#   New RC default_otf_view_format
+#   No conversion necessary.
+
+# NOTE: The format should also be updated in LYXRC.cpp and
+# in configure.py.
+
 import re
 
 ###########################################################
@@ -239,6 +252,8 @@ def add_mime_types(line):
                converted = converted + '       ""'
        return (True, converted)
 
+re_converter = re.compile(r'^\\converter\s+', re.IGNORECASE)
+
 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
@@ -259,7 +274,7 @@ def split_pdf_format(line):
                if entries[1] == 'pdf':
                        converted = line + "\n" + entries[0] + ' pdf6 "' + entries[2] + '"'
                        return (True, converted)
-       elif line.lower().startswith("\\converter"):
+       elif re_converter.match(line):
                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.
@@ -284,6 +299,8 @@ def remove_default_language(line):
                return no_match
        return (True, "")
 
+def mac_cursor_movement(line):
+       return simple_renaming(line, "\\mac_like_word_movement", "\\mac_like_cursor_movement")
 
 # End conversions for LyX 2.0 to 2.1
 ####################################
@@ -306,5 +323,9 @@ conversions = [
        [ 8, []],
        [ 9, [ remove_default_language ]],
        [ 10, []],
-       [ 11, [split_pdf_format]]
+       [ 11, [split_pdf_format]],
+       [ 12, []],
+       [ 13, [mac_cursor_movement]],
+       [ 14, []],
+       [ 15, []]
 ]