]> 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 8e16899de64f1e6e2188ddf53db02193bccd3904..66423ae2714aa7073c7ded7916cbe9f1e668aaa0 100644 (file)
@@ -1,4 +1,3 @@
-#! /usr/bin/env python
 # -*- coding: utf-8 -*-
 
 # file prefs2prefs-prefs.py
 #   Add "nice" flag for converters
 #   No conversion necessary.
 
-# Incremented to format 9, by spitz
+# Incremented to format 9, a18af620 by spitz
 #  Remove default_language rc.
 
+# Incremented to format 10, 4985015 by tommaso
+#  Add close_buffer_with_last_view in preferences.
+#  No conversion necessary.
+
+# 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
 
 ###########################################################
@@ -70,7 +90,7 @@ def get_format(line):
                        return entries
                elif not line[i].isspace():
                        beg = i
-                       while not line[i].isspace():
+                       while i < len(line) and not line[i].isspace():
                                i = i + 1
                        end = i
                        entries.append(line[beg:end])
@@ -232,11 +252,55 @@ 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
+       # 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)
+       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.
+               # The only converter to pdf that stays untouched is dvi->pdf:
+               # All other converters are likely meant for graphics.
+               if len(entries) > 2 and \
+                  ((entries[1] == 'pdf' and entries[2] == 'eps') or \
+                  (entries[1] != 'ps'  and entries[2] == 'pdf')):
+                       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
+
 def remove_default_language(line):
        if not line.lower().startswith("\\default_language"):
                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
 ####################################
@@ -257,5 +321,11 @@ conversions = [
        [ 6, []],
        [ 7, [add_mime_types]],
        [ 8, []],
-       [ 9, [ remove_default_language ]]
+       [ 9, [ remove_default_language ]],
+       [ 10, []],
+       [ 11, [split_pdf_format]],
+       [ 12, []],
+       [ 13, [mac_cursor_movement]],
+       [ 14, []],
+       [ 15, []]
 ]