]> git.lyx.org Git - lyx.git/blobdiff - src/lyxrc.C
Transform the name of the temp dir on Windows with GetLongPathName.
[lyx.git] / src / lyxrc.C
index 71a5c8967bf8aaeae20752c5464de1340f81f2ab..3db4de36829c969e954809897d78904e27bed90c 100644 (file)
 #include "LColor.h"
 #include "lyxlex.h"
 #include "lyxfont.h"
+#include "mover.h"
 
 #include "graphics/GraphicsTypes.h"
 
+#include "support/convert.h"
+#include "support/environment.h"
 #include "support/filetools.h"
 #include "support/lstrings.h"
-#include "support/tostr.h"
 #include "support/userinfo.h"
 
 using lyx::support::ascii_lowercase;
 using lyx::support::bformat;
 using lyx::support::ExpandPath;
-using lyx::support::GetEnv;
+using lyx::support::getEnv;
 using lyx::support::LibFileSearch;
 using lyx::support::token;
 
@@ -71,9 +73,11 @@ keyword_item lyxrcTags[] = {
        { "\\check_lastfiles", LyXRC::RC_CHECKLASTFILES },
        { "\\chktex_command", LyXRC::RC_CHKTEX_COMMAND },
        { "\\converter", LyXRC::RC_CONVERTER },
+       { "\\copier", LyXRC::RC_COPIER },
        { "\\cursor_follows_scrollbar", LyXRC::RC_CURSOR_FOLLOWS_SCROLLBAR },
        { "\\custom_export_command", LyXRC::RC_CUSTOM_EXPORT_COMMAND },
        { "\\custom_export_format", LyXRC::RC_CUSTOM_EXPORT_FORMAT },
+       { "\\cygwin_path_fix_needed", LyXRC::RC_CYGWIN_PATH_FIX },
        { "\\date_insert_format", LyXRC::RC_DATE_INSERT_FORMAT },
        { "\\default_language", LyXRC::RC_DEFAULT_LANGUAGE },
        { "\\default_papersize", LyXRC::RC_DEFAULT_PAPERSIZE },
@@ -83,7 +87,7 @@ keyword_item lyxrcTags[] = {
        { "\\escape_chars", LyXRC::RC_ESC_CHARS },
        { "\\font_encoding", LyXRC::RC_FONT_ENCODING },
        { "\\format", LyXRC::RC_FORMAT },
-        { "\\index_command", LyXRC::RC_INDEX_COMMAND },
+       { "\\index_command", LyXRC::RC_INDEX_COMMAND },
        { "\\input", LyXRC::RC_INPUT },
        { "\\kbmap", LyXRC::RC_KBMAP },
        { "\\kbmap_primary", LyXRC::RC_KBMAP_PRIMARY },
@@ -101,6 +105,7 @@ keyword_item lyxrcTags[] = {
        { "\\make_backup", LyXRC::RC_MAKE_BACKUP },
        { "\\mark_foreign_language", LyXRC::RC_MARK_FOREIGN_LANGUAGE },
        { "\\num_lastfiles", LyXRC::RC_NUMLASTFILES },
+       { "\\path_prefix", LyXRC::RC_PATH_PREFIX },
        { "\\personal_dictionary", LyXRC::RC_PERS_DICT },
        { "\\popup_bold_font", LyXRC::RC_POPUP_BOLD_FONT },
        { "\\popup_font_encoding", LyXRC::RC_POPUP_FONT_ENCODING },
@@ -150,6 +155,7 @@ keyword_item lyxrcTags[] = {
        { "\\spell_command", LyXRC::RC_SPELL_COMMAND },
        { "\\tempdir_path", LyXRC::RC_TEMPDIRPATH },
        { "\\template_path", LyXRC::RC_TEMPLATEPATH },
+       { "\\tex_allows_spaces", LyXRC::RC_TEX_ALLOWS_SPACES },
        { "\\ui_file", LyXRC::RC_UIFILE },
        { "\\use_alt_language", LyXRC::RC_USE_ALT_LANG },
        { "\\use_escape_chars", LyXRC::RC_USE_ESC_CHARS },
@@ -184,7 +190,7 @@ void LyXRC::setDefaults() {
        ui_file = "default";
        // Get printer from the environment. If fail, use default "",
        // assuming that everything is set up correctly.
-       printer = GetEnv("PRINTER");
+       printer = getEnv("PRINTER");
        print_adapt_output = false;
        print_command = "dvips";
        print_evenpage_flag = "-B";
@@ -207,22 +213,22 @@ void LyXRC::setDefaults() {
        chktex_command = "chktex -n1 -n3 -n6 -n9 -n22 -n25 -n30 -n38";
        bibtex_command = "bibtex";
        fontenc = "default";
-        index_command = "makeindex -c -q";
+       index_command = "makeindex -c -q";
        dpi = 75;
        // Because a screen typically is wider than a piece of paper:
        zoom = 150;
        wheel_jump = 5;
        // Default LaTeX font size:
-       font_sizes[LyXFont::SIZE_TINY] = 5.0;
-       font_sizes[LyXFont::SIZE_SCRIPT] = 7.0;
-       font_sizes[LyXFont::SIZE_FOOTNOTE] = 8.0;
-       font_sizes[LyXFont::SIZE_SMALL] = 9.0;
-       font_sizes[LyXFont::SIZE_NORMAL] = 10.0;
-       font_sizes[LyXFont::SIZE_LARGE] = 12.0;
-       font_sizes[LyXFont::SIZE_LARGER] = 14.4;
-       font_sizes[LyXFont::SIZE_LARGEST] = 17.26;
-       font_sizes[LyXFont::SIZE_HUGE] = 20.74;
-       font_sizes[LyXFont::SIZE_HUGER] = 24.88;
+       font_sizes[LyXFont::SIZE_TINY] = "5.0";
+       font_sizes[LyXFont::SIZE_SCRIPT] = "7.0";
+       font_sizes[LyXFont::SIZE_FOOTNOTE] = "8.0";
+       font_sizes[LyXFont::SIZE_SMALL] = "9.0";
+       font_sizes[LyXFont::SIZE_NORMAL] = "10.0";
+       font_sizes[LyXFont::SIZE_LARGE] = "12.0";
+       font_sizes[LyXFont::SIZE_LARGER] = "14.4";
+       font_sizes[LyXFont::SIZE_LARGEST] = "17.26";
+       font_sizes[LyXFont::SIZE_HUGE] = "20.74";
+       font_sizes[LyXFont::SIZE_HUGER] = "24.88";
        use_scalable_fonts = true;
        roman_font_name = "";
        sans_font_name = "";
@@ -262,15 +268,15 @@ void LyXRC::setDefaults() {
        language_command_local = "\\foreignlanguage{$$lang}{";
        default_language = "english";
        show_banner = true;
-
-       //
+       cygwin_path_fix = false;
+       tex_allows_spaces = false;
        date_insert_format = "%A, %e %B %Y";
        cursor_follows_scrollbar = false;
        dialogs_iconify_with_main = false;
        label_init_length = 3;
        preview = PREVIEW_OFF;
        preview_hashed_labels  = false;
-       preview_scale_factor = 0.9;
+       preview_scale_factor = "0.9";
 
        user_name = lyx::support::user_name();
 
@@ -380,6 +386,18 @@ int LyXRC::read(LyXLex & lexrc)
                        }
                        break;
 
+               case RC_CYGWIN_PATH_FIX:
+                       if (lexrc.next()) {
+                               cygwin_path_fix = lexrc.getBool();
+                       }
+                       break;
+
+               case RC_TEX_ALLOWS_SPACES:
+                       if (lexrc.next()) {
+                               tex_allows_spaces = lexrc.getBool();
+                       }
+                       break;
                case RC_KBMAP:
                        if (lexrc.next()) {
                                use_kbmap = lexrc.getBool();
@@ -588,11 +606,11 @@ int LyXRC::read(LyXLex & lexrc)
                        }
                        break;
 
-                case RC_INDEX_COMMAND:
-                        if (lexrc.next()) {
-                                index_command = lexrc.getString();
-                        }
-                        break;
+               case RC_INDEX_COMMAND:
+                       if (lexrc.next()) {
+                               index_command = lexrc.getString();
+                       }
+                       break;
 
                case RC_SCREEN_DPI:
                        if (lexrc.next()) {
@@ -615,43 +633,43 @@ int LyXRC::read(LyXLex & lexrc)
                case RC_SCREEN_FONT_SIZES:
                        if (lexrc.next()) {
                                font_sizes[LyXFont::SIZE_TINY] =
-                                       lexrc.getFloat();
+                                       lexrc.getString();
                        }
                        if (lexrc.next()) {
                                font_sizes[LyXFont::SIZE_SCRIPT] =
-                                       lexrc.getFloat();
+                                       lexrc.getString();
                        }
                        if (lexrc.next()) {
                                font_sizes[LyXFont::SIZE_FOOTNOTE] =
-                                       lexrc.getFloat();
+                                       lexrc.getString();
                        }
                        if (lexrc.next()) {
                                font_sizes[LyXFont::SIZE_SMALL] =
-                                       lexrc.getFloat();
+                                       lexrc.getString();
                        }
                        if (lexrc.next()) {
                                font_sizes[LyXFont::SIZE_NORMAL] =
-                                       lexrc.getFloat();
+                                       lexrc.getString();
                        }
                        if (lexrc.next()) {
                                font_sizes[LyXFont::SIZE_LARGE] =
-                                       lexrc.getFloat();
+                                       lexrc.getString();
                        }
                        if (lexrc.next()) {
                                font_sizes[LyXFont::SIZE_LARGER] =
-                                       lexrc.getFloat();
+                                       lexrc.getString();
                        }
                        if (lexrc.next()) {
                                font_sizes[LyXFont::SIZE_LARGEST] =
-                                       lexrc.getFloat();
+                                       lexrc.getString();
                        }
                        if (lexrc.next()) {
                                font_sizes[LyXFont::SIZE_HUGE] =
-                                       lexrc.getFloat();
+                                       lexrc.getString();
                        }
                        if (lexrc.next()) {
                                font_sizes[LyXFont::SIZE_HUGER] =
-                                       lexrc.getFloat();
+                                       lexrc.getString();
                        }
                        break;
 
@@ -964,6 +982,18 @@ int LyXRC::read(LyXLex & lexrc)
                        }
                        break;
 
+               case RC_COPIER: {
+                       string fmt, command;
+                       if (lexrc.next()) {
+                               fmt = lexrc.getString();
+                       }
+                       if (lexrc.next()) {
+                               command = lexrc.getString();
+                       }
+                       movers.set(fmt, command);
+                       break;
+               }
+
                case RC_CONVERTER: {
                        string from, to, command, flags;
                        if (lexrc.next()) {
@@ -1093,7 +1123,7 @@ int LyXRC::read(LyXLex & lexrc)
 
                case RC_PREVIEW_SCALE_FACTOR:
                        if (lexrc.next()) {
-                               preview_scale_factor = lexrc.getFloat();
+                               preview_scale_factor = lexrc.getString();
                        }
                        break;
 
@@ -1107,6 +1137,11 @@ int LyXRC::read(LyXLex & lexrc)
                                user_email = lexrc.getString();
                        break;
 
+               case RC_PATH_PREFIX:
+                       if (lexrc.next())
+                               path_prefix = lexrc.getString();
+                       break;
+
                case RC_LAST: break; // this is just a dummy
                }
        }
@@ -1136,6 +1171,24 @@ void LyXRC::print() const
 }
 
 
+class SameMover {
+public:
+       typedef std::pair<std::string, SpecialisedMover> Data;
+
+       SameMover(Data const & comparison)
+               : comparison_(comparison) {}
+
+       bool operator()(Data const & data) const
+       {
+               return data.first == comparison_.first &&
+                       data.second.command() == comparison_.second.command();
+       }
+
+private:
+       Data comparison_;
+};
+
+
 void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const
 {
        os << "### This file is part of\n"
@@ -1174,6 +1227,13 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const
                   << "#\n\n";
 
                // bind files are not done here.
+
+       case RC_PATH_PREFIX:
+               if (ignore_system_lyxrc ||
+                   path_prefix != system_lyxrc.path_prefix) {
+                       os << "\\path_prefix \"" << path_prefix << "\"\n";
+               }
+
        case RC_UIFILE:
                if (ignore_system_lyxrc ||
                    ui_file != system_lyxrc.ui_file) {
@@ -1184,7 +1244,7 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const
                    auto_region_delete != system_lyxrc.auto_region_delete) {
                        os << "# Set to false to inhibit automatic replacement of\n"
                           << "# the current selection.\n"
-                          << "\\auto_region_delete " << tostr(auto_region_delete)
+                          << "\\auto_region_delete " << convert<string>(auto_region_delete)
                           << '\n';
                }
        case RC_AUTORESET_OPTIONS:
@@ -1192,7 +1252,8 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const
                    auto_reset_options != system_lyxrc.auto_reset_options) {
                        os << "# Set to false to inhibit automatic reset of\n"
                           << "# the class options to defaults on class change.\n"
-                          << "\\auto_reset_options " << tostr(auto_reset_options)
+                          << "\\auto_reset_options "
+                          << convert<string>(auto_reset_options)
                           << '\n';
                }
        case RC_AUTOSAVE:
@@ -1254,15 +1315,26 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const
                    bibtex_command != system_lyxrc.bibtex_command) {
                        os << "\\bibtex_command \"" << bibtex_command << "\"\n";
                }
-        case RC_INDEX_COMMAND:
-                if (ignore_system_lyxrc ||
-                    index_command != system_lyxrc.index_command) {
-                        os << "\\index_command \"" << index_command << "\"\n";
-                }
+       case RC_INDEX_COMMAND:
+               if (ignore_system_lyxrc ||
+                   index_command != system_lyxrc.index_command) {
+                       os << "\\index_command \"" << index_command << "\"\n";
+               }
+       case RC_CYGWIN_PATH_FIX:
+               if (ignore_system_lyxrc ||
+                   cygwin_path_fix != system_lyxrc.cygwin_path_fix) {
+                       os << "\\cygwin_path_fix_needed "
+                          << convert<string>(cygwin_path_fix) << '\n';
+               }
+       case RC_TEX_ALLOWS_SPACES:
+               if (tex_allows_spaces != system_lyxrc.tex_allows_spaces) {
+                       os << "\\tex_allows_spaces "
+                          << convert<string>(tex_allows_spaces) << '\n';
+               }
        case RC_KBMAP:
                if (ignore_system_lyxrc ||
                    use_kbmap != system_lyxrc.use_kbmap) {
-                       os << "\\kbmap " << tostr(use_kbmap) << '\n';
+                       os << "\\kbmap " << convert<string>(use_kbmap) << '\n';
                }
        case RC_KBMAP_PRIMARY:
                if (ignore_system_lyxrc ||
@@ -1302,7 +1374,7 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const
        case RC_SHOW_BANNER:
                if (ignore_system_lyxrc ||
                    show_banner != system_lyxrc.show_banner) {
-                       os << "\\show_banner " << tostr(show_banner) << '\n';
+                       os << "\\show_banner " << convert<string>(show_banner) << '\n';
                }
 
        case RC_PREVIEW:
@@ -1328,7 +1400,7 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const
                    preview_hashed_labels !=
                    system_lyxrc.preview_hashed_labels) {
                        os << "\\preview_hashed_labels "
-                          << tostr(preview_hashed_labels) << '\n';
+                          << convert<string>(preview_hashed_labels) << '\n';
                }
 
        case RC_PREVIEW_SCALE_FACTOR:
@@ -1380,14 +1452,14 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const
                    cursor_follows_scrollbar
                    != system_lyxrc.cursor_follows_scrollbar) {
                        os << "\\cursor_follows_scrollbar "
-                          << tostr(cursor_follows_scrollbar) << '\n';
+                          << convert<string>(cursor_follows_scrollbar) << '\n';
                }
        case RC_DIALOGS_ICONIFY_WITH_MAIN:
                if (ignore_system_lyxrc ||
                    dialogs_iconify_with_main
                   != system_lyxrc.dialogs_iconify_with_main) {
                        os << "\\dialogs_iconify_with_main "
-                         <<  tostr(dialogs_iconify_with_main) << '\n';
+                         <<  convert<string>(dialogs_iconify_with_main) << '\n';
                }
        case RC_SCREEN_FONT_ROMAN:
                if (ignore_system_lyxrc ||
@@ -1430,7 +1502,7 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const
                if (ignore_system_lyxrc ||
                    use_scalable_fonts != system_lyxrc.use_scalable_fonts) {
                        os << "\\screen_font_scalable "
-                          << tostr(use_scalable_fonts)
+                          << convert<string>(use_scalable_fonts)
                           << '\n';
                }
        case RC_SCREEN_FONT_ENCODING:
@@ -1507,7 +1579,7 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const
                if (ignore_system_lyxrc ||
                    print_adapt_output != system_lyxrc.print_adapt_output) {
                        os << "\\print_adapt_output "
-                          << tostr(print_adapt_output)
+                          << convert<string>(print_adapt_output)
                           << '\n';
                }
        case RC_PRINT_COMMAND:
@@ -1662,7 +1734,7 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const
        case RC_CHECKLASTFILES:
                if (ignore_system_lyxrc ||
                    check_lastfiles != system_lyxrc.check_lastfiles) {
-                       os << "\\check_lastfiles " << tostr(check_lastfiles)
+                       os << "\\check_lastfiles " << convert<string>(check_lastfiles)
                           << '\n';
                }
        case RC_TEMPLATEPATH:
@@ -1685,7 +1757,7 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const
        case RC_MAKE_BACKUP:
                if (ignore_system_lyxrc ||
                    make_backup != system_lyxrc.make_backup) {
-                       os << "\\make_backup " << tostr(make_backup) << '\n';
+                       os << "\\make_backup " << convert<string>(make_backup) << '\n';
                }
        case RC_BACKUPDIR_PATH:
                if (ignore_system_lyxrc ||
@@ -1710,7 +1782,7 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const
        case RC_USE_SPELL_LIB:
                if (ignore_system_lyxrc ||
                    use_spell_lib != system_lyxrc.use_spell_lib) {
-                       os << "\\use_spell_lib " << tostr(use_spell_lib) << '\n';
+                       os << "\\use_spell_lib " << convert<string>(use_spell_lib) << '\n';
                }
        case RC_SPELL_COMMAND:
                if (ignore_system_lyxrc ||
@@ -1720,13 +1792,13 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const
        case RC_ACCEPT_COMPOUND:
                if (ignore_system_lyxrc ||
                    isp_accept_compound != system_lyxrc.isp_accept_compound) {
-                       os << "\\accept_compound " << tostr(isp_accept_compound)
+                       os << "\\accept_compound " << convert<string>(isp_accept_compound)
                           << '\n';
                }
        case RC_USE_ALT_LANG:
                if (ignore_system_lyxrc ||
                    isp_use_alt_lang != system_lyxrc.isp_use_alt_lang) {
-                       os << "\\use_alt_language " << tostr(isp_use_alt_lang)
+                       os << "\\use_alt_language " << convert<string>(isp_use_alt_lang)
                           << '\n';
                }
        case RC_ALT_LANG:
@@ -1738,7 +1810,7 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const
        case RC_USE_ESC_CHARS:
                if (ignore_system_lyxrc ||
                    isp_use_esc_chars != system_lyxrc.isp_use_esc_chars) {
-                       os << "\\use_escape_chars " << tostr(isp_use_esc_chars)
+                       os << "\\use_escape_chars " << convert<string>(isp_use_esc_chars)
                           << '\n';
                }
        case RC_ESC_CHARS:
@@ -1750,7 +1822,7 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const
                if (ignore_system_lyxrc ||
                    isp_use_pers_dict != system_lyxrc.isp_use_pers_dict) {
                        os << "\\use_personal_dictionary "
-                          << tostr(isp_use_pers_dict)
+                          << convert<string>(isp_use_pers_dict)
                           << '\n';
                }
        case RC_PERS_DICT:
@@ -1763,7 +1835,7 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const
                    isp_use_input_encoding
                    != system_lyxrc.isp_use_input_encoding) {
                        os << "\\use_input_encoding "
-                          << tostr(isp_use_input_encoding)
+                          << convert<string>(isp_use_input_encoding)
                           << '\n';
                }
 
@@ -1774,7 +1846,7 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const
        case RC_RTL_SUPPORT:
                if (ignore_system_lyxrc ||
                    rtl_support != system_lyxrc.rtl_support) {
-                       os << "\\rtl " << tostr(rtl_support) << '\n';
+                       os << "\\rtl " << convert<string>(rtl_support) << '\n';
                }
        case RC_LANGUAGE_PACKAGE:
                if (ignore_system_lyxrc ||
@@ -1787,14 +1859,14 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const
                    language_global_options
                    != system_lyxrc.language_global_options) {
                        os << "\\language_global_options \""
-                          << tostr(language_global_options)
+                          << convert<string>(language_global_options)
                           << "\"\n";
                }
        case RC_LANGUAGE_USE_BABEL:
                if (ignore_system_lyxrc ||
                    language_use_babel != system_lyxrc.language_use_babel) {
                        os << "\\language_use_babel \""
-                          << tostr(language_use_babel)
+                          << convert<string>(language_use_babel)
                           << "\"\n";
                }
        case RC_LANGUAGE_COMMAND_BEGIN:
@@ -1824,20 +1896,20 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const
                if (ignore_system_lyxrc ||
                    language_auto_begin != system_lyxrc.language_auto_begin) {
                        os << "\\language_auto_begin "
-                          << tostr(language_auto_begin) << '\n';
+                          << convert<string>(language_auto_begin) << '\n';
                }
        case RC_LANGUAGE_AUTO_END:
                if (ignore_system_lyxrc ||
                    language_auto_end != system_lyxrc.language_auto_end) {
                        os << "\\language_auto_end "
-                          << tostr(language_auto_end) << '\n';
+                          << convert<string>(language_auto_end) << '\n';
                }
        case RC_MARK_FOREIGN_LANGUAGE:
                if (ignore_system_lyxrc ||
                    mark_foreign_language
                    != system_lyxrc.mark_foreign_language) {
                        os << "\\mark_foreign_language " <<
-                               tostr(mark_foreign_language) << '\n';
+                               convert<string>(mark_foreign_language) << '\n';
                }
 
                os << "\n#\n"
@@ -1847,7 +1919,7 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const
        case RC_AUTO_NUMBER:
                if (ignore_system_lyxrc ||
                    auto_number != system_lyxrc.auto_number) {
-                       os << "\\auto_number " << tostr(auto_number) << '\n';
+                       os << "\\auto_number " << convert<string>(auto_number) << '\n';
                }
        case RC_DEFAULT_LANGUAGE:
                if (ignore_system_lyxrc ||
@@ -1915,7 +1987,34 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const
                                os << "\\converter \"" << cit->from
                                   << "\" \"" << cit->to << "\" \"\" \"\"\n";
 
+       case RC_COPIER:
+               os << "\n#\n"
+                  << "# COPIERS SECTION ##########################\n"
+                  << "#\n\n";
+
+               // Look for new movers
+               Movers::iterator const sysbegin = system_movers.begin();
+               Movers::iterator const sysend = system_movers.end();
+
+               for (Movers::iterator it = movers.begin(), end = movers.end();
+                    it != end; ++it) {
+                       Movers::iterator const sysit =
+                               std::find_if(sysbegin, sysend, SameMover(*it));
+                       if (sysit == sysend) {
+                               std::string const & fmt = it->first;
+                               std::string const & command =
+                                       it->second.command();
+
+                               os << "\\copier " << fmt
+                                  << " \"" << command << "\"\n";
+                       }
+               }
+
+               // We don't actually delete SpecialisedMover(s) from the
+               // map, just clear their 'command', so there's no need
+               // to test for anything else.
        }
+
        os.flush();
 }
 
@@ -1945,336 +2044,380 @@ string const LyXRC::getDescription(LyXRCTags tag)
        string str;
 
        switch (tag) {
-       case RC_FONT_ENCODING:
-               str = _("The font encoding used for the LaTeX2e fontenc package. T1 is highly recommended for non-English languages.");
+       case RC_ACCEPT_COMPOUND:
+               str = _("Consider run-together words, such as \"diskdrive\" for \"disk drive\", as legal words?");
                break;
 
-       case RC_PRINTER:
-               str = _("The default printer to print on. If none is specified, LyX will use the environment variable PRINTER.");
+       case RC_ALT_LANG:
+       case RC_USE_ALT_LANG:
+               str = _("Specify an alternate language. The default is to use the language of the document.");
                break;
 
-       case RC_PRINT_COMMAND:
-               str = _("Your favorite print program, e.g. \"dvips\", \"dvilj4\".");
+       case RC_ASCIIROFF_COMMAND:
+               str = _("Use to define an external program to render tables in the ASCII output. E.g. \"groff -t -Tlatin1 $$FName\" where $$FName is the input file. If \"none\" is specified, an internal routine is used.");
                break;
 
-       case RC_PRINTEVENPAGEFLAG:
-               str = _("The option to print only even pages.");
+       case RC_ASCII_LINELEN:
+               str = _("This is the maximum line length of an exported ASCII file (LaTeX, SGML or plain text).");
                break;
 
-       case RC_PRINTODDPAGEFLAG:
-               str = _("The option to print only odd pages.");
+       case RC_AUTOREGIONDELETE:
+               str = _("De-select if you don't want the current selection to be replaced automatically by what you type.");
                break;
 
-       case RC_PRINTPAGERANGEFLAG:
-               str = _("The option for specifying a comma-separated list of pages to print.");
+       case RC_AUTORESET_OPTIONS:
+               str = _("De-select if you don't want the class options to be reset to defaults after class change.");
                break;
 
-       case RC_PRINTCOPIESFLAG:
-               str = _("The option for specifying the number of copies to print.");
+       case RC_AUTOSAVE:
+               str = _("The time interval between auto-saves (in seconds). 0 means no auto-save.");
                break;
 
-       case RC_PRINTCOLLCOPIESFLAG:
-               str = _("The option for specifying whether the copies should be collated.");
+       case RC_AUTO_NUMBER:
                break;
 
-       case RC_PRINTREVERSEFLAG:
-               str = _("The option to reverse the order of the pages printed.");
+       case RC_BACKUPDIR_PATH:
+               str = _("The path for storing backup files. If it is an empty string, LyX will store the backup file in the same directory as the original file.");
                break;
 
-       case RC_PRINTLANDSCAPEFLAG:
-               str = _("The option to print out in landscape.");
+       case RC_BIBTEX_COMMAND:
+               str = _("Define the options of bibtex (cf. man bibtex) or select an alternative compiler (e.g. mlbibtex or bibulus).");
                break;
 
-       case RC_PRINTPAPERFLAG:
-               str = _("The option to specify paper type.");
+       case RC_BINDFILE:
+               str = _("Keybindings file. Can either specify an absolute path, or LyX will look in its global and local bind/ directories.");
                break;
 
-       case RC_PRINTPAPERDIMENSIONFLAG:
-               str = _("Option to specify the dimensions of the print paper.");
+       case RC_CHECKLASTFILES:
+               str = _("Select to check whether the lastfiles still exist.");
                break;
 
-       case RC_PRINTTOPRINTER:
-               str = _("Option to pass to the print program to print on a specific printer.");
+       case RC_CHKTEX_COMMAND:
+               str = _("Define how to run chktex. E.g. \"chktex -n11 -n1 -n3 -n6 -n9 -22 -n25 -n30 -n38\" Refer to the ChkTeX documentation.");
                break;
 
-       case RC_PRINT_ADAPTOUTPUT:
-               str = _("Select for LyX to pass the name of the destination printer to your print command.");
+       case RC_CONVERTER:
                break;
 
-       case RC_PRINTTOFILE:
-               str = _("Option to pass to the print program to print to a file.");
+       case RC_COPIER:
                break;
 
-       case RC_PRINTFILEEXTENSION:
-               str = _("Extension of printer program output file. Usually \".ps\".");
+       case RC_CURSOR_FOLLOWS_SCROLLBAR:
+               str = _("LyX normally doesn't update the cursor position if you move the scrollbar. Set to true if you'd prefer to always have the cursor on screen.");
                break;
 
-       case RC_PRINTEXSTRAOPTIONS:
-               str = _("Extra options to pass to printing program after everything else, but before the filename of the DVI file to be printed.");
+       case RC_CUSTOM_EXPORT_COMMAND:
                break;
 
-       case RC_PRINTSPOOL_COMMAND:
-               str = _("When set, this printer option automatically prints to a file and then calls a separate print spooling program on that file with the given name and arguments.");
+       case RC_CUSTOM_EXPORT_FORMAT:
                break;
 
-       case RC_PRINTSPOOL_PRINTERPREFIX:
-               str = _("If you specify a printer name in the print dialog, the following argument is prepended along with the printer name after the spool command.");
+       case RC_CYGWIN_PATH_FIX:
                break;
 
-       case RC_SCREEN_DPI:
-               str = _("DPI (dots per inch) of your monitor is auto-detected by LyX. If that goes wrong, override the setting here.");
+       case RC_DATE_INSERT_FORMAT:
+               //xgettext:no-c-format
+               str = _("This accepts the normal strftime formats; see man strftime for full details. E.g.\"%A, %e. %B %Y\".");
                break;
 
-       case RC_SCREEN_ZOOM:
-               //xgettext:no-c-format
-               str = _("The zoom percentage for screen fonts. A setting of 100% will make the fonts roughly the same size as on paper.");
+       case RC_DEFAULT_LANGUAGE:
+               str = _("New documents will be assigned this language.");
                break;
 
-       case RC_SCREEN_FONT_SIZES:
-               str = _("The font sizes used for calculating the scaling of the screen fonts.");
+       case RC_DEFAULT_PAPERSIZE:
+               str = _("Specify the default paper size.");
                break;
 
-       case RC_SCREEN_FONT_ROMAN:
-       case RC_SCREEN_FONT_SANS:
-       case RC_SCREEN_FONT_TYPEWRITER:
-               str = _("The screen fonts used to display the text while editing.");
+       case RC_DIALOGS_ICONIFY_WITH_MAIN:
+               str = _("Iconify the dialogs when the main window is iconified. (Affects only dialogs shown after the change has been made.)");
                break;
 
-       case RC_POPUP_BOLD_FONT:
-               str = _("The bold font in the dialogs.");
+       case RC_DISPLAY_GRAPHICS:
+               str = _("Select how LyX will display any graphics.");
                break;
 
-       case RC_POPUP_NORMAL_FONT:
-               str = _("The normal font in the dialogs.");
+       case RC_DOCUMENTPATH:
+               str = _("The default path for your documents. An empty value selects the directory LyX was started from.");
                break;
 
-       case RC_SCREEN_FONT_ENCODING:
-               str = _("The encoding for the screen fonts.");
+       case RC_ESC_CHARS:
+       case RC_USE_ESC_CHARS:
+               str = _("Specify additional chars that can be part of a word.");
                break;
 
-       case RC_POPUP_FONT_ENCODING:
-               str = _("The encoding for the menu/popups fonts.");
+       case RC_FONT_ENCODING:
+               str = _("The font encoding used for the LaTeX2e fontenc package. T1 is highly recommended for non-English languages.");
                break;
 
-       case RC_SET_COLOR:
+       case RC_FORMAT:
                break;
 
-       case RC_AUTOSAVE:
-               str = _("The time interval between auto-saves (in seconds). 0 means no auto-save.");
+       case RC_INDEX_COMMAND:
+               str = _("Define the options of makeindex (cf. man makeindex) or select an alternative compiler. E.g., using xindy/make-rules, the command string would be \"makeindex.sh -m $$lang\".");
                break;
 
-       case RC_DOCUMENTPATH:
-               str = _("The default path for your documents. An empty value selects the directory LyX was started from.");
+       case RC_INPUT:
                break;
 
-       case RC_TEMPLATEPATH:
-               str = _("The path that LyX will set when offering to choose a template. An empty value selects the directory LyX was started from.");
+       case RC_KBMAP:
+       case RC_KBMAP_PRIMARY:
+       case RC_KBMAP_SECONDARY:
+               str = _("Use this to set the correct mapping file for your keyboard. You'll need this if you for instance want to type German documents on an American keyboard.");
                break;
 
-       case RC_TEMPDIRPATH:
-               str = _("LyX will place its temporary directories in this path. They will be deleted when you quit LyX.");
+       case RC_LABEL_INIT_LENGTH:
+               str = _("Maximum number of words in the initialization string for a new label");
                break;
 
-       case RC_LASTFILES:
-               str = _("The file where the last-files information should be stored.");
+       case RC_LANGUAGE_AUTO_BEGIN:
+               str = _("Select if a language switching command is needed at the beginning of the document.");
                break;
 
-       case RC_AUTOREGIONDELETE:
-               str = _("De-select if you don't want the current selection to be replaced automatically by what you type.");
+       case RC_LANGUAGE_AUTO_END:
+               str = _("Select if a language switching command is needed at the end of the document.");
                break;
 
-       case RC_AUTORESET_OPTIONS:
-               str = _("De-select if you don't want the class options to be reset to defaults after class change.");
+       case RC_LANGUAGE_COMMAND_BEGIN:
+               str = _("The LaTeX command for changing from the language of the document to another language. E.g. \\selectlanguage{$$lang} where $$lang is substituted by the name of the second language.");
                break;
 
-       case RC_SERVERPIPE:
-               str = _("This starts the lyxserver. The pipes get an additional extension \".in\" and \".out\". Only for advanced users.");
+       case RC_LANGUAGE_COMMAND_END:
+               str = _("The LaTeX command for changing back to the language of the document.");
                break;
 
-       case RC_BINDFILE:
-               str = _("Keybindings file. Can either specify an absolute path, or LyX will look in its global and local bind/ directories.");
+       case RC_LANGUAGE_COMMAND_LOCAL:
+               str = _("The LaTeX command for local changing of the language.");
                break;
 
-       case RC_UIFILE:
-               str = _("The UI (user interface) file. Can either specify an absolute path, or LyX will look in its global and local ui/ directories.");
+       case RC_LANGUAGE_GLOBAL_OPTIONS:
+               str = _("De-select if you don't want the language(s) used as an argument to \\documentclass.");
                break;
 
-       case RC_KBMAP:
-       case RC_KBMAP_PRIMARY:
-       case RC_KBMAP_SECONDARY:
-               str = _("Use this to set the correct mapping file for your keyboard. You'll need this if you for instance want to type German documents on an American keyboard.");
+       case RC_LANGUAGE_PACKAGE:
+               str = _("The LaTeX command for loading the language package. E.g. \"\\usepackage{babel}\", \"\\usepackage{omega}\".");
                break;
 
-       case RC_ASCIIROFF_COMMAND:
-               str = _("Use to define an external program to render tables in the ASCII output. E.g. \"groff -t -Tlatin1 $$FName\" where $$FName is the input file. If \"none\" is specified, an internal routine is used.");
+       case RC_LANGUAGE_USE_BABEL:
+               str = _("De-select if you don't want babel to be used when the language of the document is the default language.");
                break;
 
-       case RC_ASCII_LINELEN:
-               str = _("This is the maximum line length of an exported ASCII file (LaTeX, SGML or plain text).");
+       case RC_LASTFILES:
+               str = _("The file where the last-files information should be stored.");
+               break;
+
+       case RC_MAKE_BACKUP:
+               str = _("De-select if you don't want LyX to create backup files.");
+               break;
+
+       case RC_MARK_FOREIGN_LANGUAGE:
+               str = _("Select to control the highlighting of words with a language foreign to that of the document.");
                break;
 
        case RC_NUMLASTFILES:
-               str = bformat(_("Maximal number of lastfiles. Up to %1$s can appear in the file menu."), tostr(maxlastfiles));
+               str = bformat(_("Maximal number of lastfiles. Up to %1$d can appear in the file menu."), maxlastfiles);
                break;
 
-       case RC_CHECKLASTFILES:
-               str = _("Select to check whether the lastfiles still exist.");
+       case RC_PATH_PREFIX:
+               str = _("Specify those directories which should be "
+                        "prepended to the PATH environment variable. "
+                        "Use the OS native format.");
                break;
 
-       case RC_VIEWDVI_PAPEROPTION:
-               str = _("Specify the paper command to DVI viewer (leave empty or use \"-paper\")");
+       case RC_PERS_DICT:
+       case RC_USE_PERS_DICT:
+               str = _("Specify an alternate personal dictionary file. E.g. \".ispell_english\".");
                break;
 
-       case RC_DEFAULT_PAPERSIZE:
-               str = _("Specify the default paper size.");
+       case RC_POPUP_BOLD_FONT:
+               str = _("The bold font in the dialogs.");
                break;
 
-       case RC_ACCEPT_COMPOUND:
-               str = _("Consider run-together words, such as \"diskdrive\" for \"disk drive\", as legal words?");
+       case RC_POPUP_FONT_ENCODING:
+               str = _("The encoding for the menu/popups fonts.");
                break;
 
-       case RC_SPELL_COMMAND:
-               str = _("What command runs the spell checker?");
+       case RC_POPUP_NORMAL_FONT:
+               str = _("The normal font in the dialogs.");
                break;
 
-       case RC_USE_INP_ENC:
-               str = _("Specify whether to pass the -T input encoding option to ispell. Enable this if you can't spellcheck words with international letters in them. This may not work with all dictionaries.");
+       case RC_PREVIEW:
+               str = _("Shows a typeset preview of things such as math");
                break;
 
-       case RC_USE_ALT_LANG:
-       case RC_ALT_LANG:
-               str = _("Specify an alternate language. The default is to use the language of the document.");
+       case RC_PREVIEW_HASHED_LABELS:
+               str = _("Previewed equations will have \"(#)\" labels rather than numbered ones");
                break;
 
-       case RC_USE_PERS_DICT:
-       case RC_PERS_DICT:
-               str = _("Specify an alternate personal dictionary file. E.g. \".ispell_english\".");
+       case RC_PREVIEW_SCALE_FACTOR:
+               str = _("Scale the preview size to suit.");
                break;
 
-       case RC_USE_ESC_CHARS:
-       case RC_ESC_CHARS:
-               str = _("Specify additional chars that can be part of a word.");
+       case RC_PRINTCOLLCOPIESFLAG:
+               str = _("The option for specifying whether the copies should be collated.");
                break;
 
-       case RC_SCREEN_FONT_SCALABLE:
-               str = _("Allow bitmap fonts to be resized. If you are using a bitmap font, selecting this option may make some fonts look blocky in LyX. Deselecting this option makes LyX use the nearest bitmap font size available, instead of scaling.");
+       case RC_PRINTCOPIESFLAG:
+               str = _("The option for specifying the number of copies to print.");
                break;
 
-       case RC_CHKTEX_COMMAND:
-               str = _("Define how to run chktex. E.g. \"chktex -n11 -n1 -n3 -n6 -n9 -22 -n25 -n30 -n38\" Refer to the ChkTeX documentation.");
+       case RC_PRINTER:
+               str = _("The default printer to print on. If none is specified, LyX will use the environment variable PRINTER.");
                break;
 
-       case RC_BIBTEX_COMMAND:
-               str = _("Define the options of bibtex (cf. man bibtex) or select an alternative compiler (e.g. mlbibtex or bibulus).");
+       case RC_PRINTEVENPAGEFLAG:
+               str = _("The option to print only even pages.");
                break;
 
-        case RC_INDEX_COMMAND:
-                str = _("Define the options of makeindex (cf. man makeindex) or select an alternative compiler (e.g. xindy).");
+       case RC_PRINTEXSTRAOPTIONS:
+               str = _("Extra options to pass to printing program after everything else, but before the filename of the DVI file to be printed.");
                break;
 
-       case RC_CURSOR_FOLLOWS_SCROLLBAR:
-               str = _("LyX normally doesn't update the cursor position if you move the scrollbar. Set to true if you'd prefer to always have the cursor on screen.");
+       case RC_PRINTFILEEXTENSION:
+               str = _("Extension of printer program output file. Usually \".ps\".");
                break;
 
-       case RC_DIALOGS_ICONIFY_WITH_MAIN:
-               str = _("Iconify the dialogs when the main window is iconified. (Affects only dialogs shown after the change has been made.)");
+       case RC_PRINTLANDSCAPEFLAG:
+               str = _("The option to print out in landscape.");
                break;
 
-       case RC_DISPLAY_GRAPHICS:
-               str = _("Select how LyX will display any graphics.");
+       case RC_PRINTODDPAGEFLAG:
+               str = _("The option to print only odd pages.");
                break;
 
-       case RC_MAKE_BACKUP:
-               str = _("De-select if you don't want LyX to create backup files.");
+       case RC_PRINTPAGERANGEFLAG:
+               str = _("The option for specifying a comma-separated list of pages to print.");
                break;
 
-       case RC_BACKUPDIR_PATH:
-               str = _("The path for storing backup files. If it is an empty string, LyX will store the backup file in the same directory as the original file.");
+       case RC_PRINTPAPERDIMENSIONFLAG:
+               str = _("Option to specify the dimensions of the print paper.");
                break;
 
-       case RC_RTL_SUPPORT:
-               str = _("Select to enable support of right-to-left languages (e.g. Hebrew, Arabic).");
+       case RC_PRINTPAPERFLAG:
+               str = _("The option to specify paper type.");
                break;
 
-       case RC_MARK_FOREIGN_LANGUAGE:
-               str = _("Select to control the highlighting of words with a language foreign to that of the document.");
+       case RC_PRINTREVERSEFLAG:
+               str = _("The option to reverse the order of the pages printed.");
                break;
 
-       case RC_LANGUAGE_PACKAGE:
-               str = _("The LaTeX command for loading the language package. E.g. \"\\usepackage{babel}\", \"\\usepackage{omega}\".");
+       case RC_PRINTSPOOL_COMMAND:
+               str = _("When set, this printer option automatically prints to a file and then calls a separate print spooling program on that file with the given name and arguments.");
                break;
 
-       case RC_LANGUAGE_GLOBAL_OPTIONS:
-               str = _("De-select if you don't want the language(s) used as an argument to \\documentclass.");
+       case RC_PRINTSPOOL_PRINTERPREFIX:
+               str = _("If you specify a printer name in the print dialog, the following argument is prepended along with the printer name after the spool command.");
                break;
 
-       case RC_LANGUAGE_USE_BABEL:
-               str = _("De-select if you don't want babel to be used when the language of the document is the default language.");
+       case RC_PRINTTOFILE:
+               str = _("Option to pass to the print program to print to a file.");
                break;
 
-       case RC_LANGUAGE_AUTO_BEGIN:
-               str = _("Select if a language switching command is needed at the beginning of the document.");
+       case RC_PRINTTOPRINTER:
+               str = _("Option to pass to the print program to print on a specific printer.");
                break;
 
-       case RC_LANGUAGE_AUTO_END:
-               str = _("Select if a language switching command is needed at the end of the document.");
+       case RC_PRINT_ADAPTOUTPUT:
+               str = _("Select for LyX to pass the name of the destination printer to your print command.");
                break;
 
-       case RC_LANGUAGE_COMMAND_BEGIN:
-               str = _("The LaTeX command for changing from the language of the document to another language. E.g. \\selectlanguage{$$lang} where $$lang is substituted by the name of the second language.");
+       case RC_PRINT_COMMAND:
+               str = _("Your favorite print program, e.g. \"dvips\", \"dvilj4\".");
                break;
 
-       case RC_LANGUAGE_COMMAND_END:
-               str = _("The LaTeX command for changing back to the language of the document.");
+       case RC_RTL_SUPPORT:
+               str = _("Select to enable support of right-to-left languages (e.g. Hebrew, Arabic).");
                break;
 
-       case RC_LANGUAGE_COMMAND_LOCAL:
-               str = _("The LaTeX command for local changing of the language.");
+       case RC_SCREEN_DPI:
+               str = _("DPI (dots per inch) of your monitor is auto-detected by LyX. If that goes wrong, override the setting here.");
                break;
 
-       case RC_DATE_INSERT_FORMAT:
+       case RC_SCREEN_FONT_ENCODING:
+               str = _("The encoding for the screen fonts.");
+               break;
+
+       case RC_SCREEN_FONT_ROMAN:
+       case RC_SCREEN_FONT_SANS:
+       case RC_SCREEN_FONT_TYPEWRITER:
+               str = _("The screen fonts used to display the text while editing.");
+               break;
+
+       case RC_SCREEN_FONT_ROMAN_FOUNDRY:
+       case RC_SCREEN_FONT_SANS_FOUNDRY:
+       case RC_SCREEN_FONT_TYPEWRITER_FOUNDRY:
+               break;
+
+       case RC_SCREEN_FONT_SCALABLE:
+               str = _("Allow bitmap fonts to be resized. If you are using a bitmap font, selecting this option may make some fonts look blocky in LyX. Deselecting this option makes LyX use the nearest bitmap font size available, instead of scaling.");
+               break;
+
+       case RC_SCREEN_FONT_SIZES:
+               str = _("The font sizes used for calculating the scaling of the screen fonts.");
+               break;
+
+       case RC_SCREEN_ZOOM:
                //xgettext:no-c-format
-               str = _("This accepts the normal strftime formats; see man strftime for full details. E.g.\"%A, %e. %B %Y\".");
+               str = _("The zoom percentage for screen fonts. A setting of 100% will make the fonts roughly the same size as on paper.");
+               break;
+
+       case RC_SERVERPIPE:
+               str = _("This starts the lyxserver. The pipes get an additional extension \".in\" and \".out\". Only for advanced users.");
+               break;
+
+       case RC_SET_COLOR:
                break;
 
        case RC_SHOW_BANNER:
                str = _("De-select if you don't want the startup banner.");
                break;
 
-       case RC_WHEEL_JUMP:
-               str = _("The number of lines that are scrolled by mice with wheels or five button mice.");
+       case RC_SPELL_COMMAND:
+               str = _("What command runs the spell checker?");
                break;
 
-       case RC_CONVERTER:
+       case RC_TEMPDIRPATH:
+               str = _("LyX will place its temporary directories in this path. They will be deleted when you quit LyX.");
                break;
 
-       case RC_VIEWER:
+       case RC_TEMPLATEPATH:
+               str = _("The path that LyX will set when offering to choose a template. An empty value selects the directory LyX was started from.");
                break;
 
-       case RC_FORMAT:
+       case RC_TEX_ALLOWS_SPACES:
                break;
 
-       case RC_DEFAULT_LANGUAGE:
-               str = _("New documents will be assigned this language.");
+       case RC_UIFILE:
+               str = _("The UI (user interface) file. Can either specify an absolute path, or LyX will look in its global and local ui/ directories.");
                break;
 
-       case RC_LABEL_INIT_LENGTH:
-               str = _("Maximum number of words in the initialization string for a new label");
+       case RC_USER_EMAIL:
                break;
 
-       case RC_PREVIEW:
-               str = _("Shows a typeset preview of things such as math");
+       case RC_USER_NAME:
                break;
 
-       case RC_PREVIEW_HASHED_LABELS:
-               str = _("Previewed equations will have \"(#)\" labels rather than numbered ones");
+       case RC_USETEMPDIR:
                break;
 
-       case RC_PREVIEW_SCALE_FACTOR:
-               str = _("Scale the preview size to suit.");
+       case RC_USE_INP_ENC:
+               str = _("Specify whether to pass the -T input encoding option to ispell. Enable this if you can't spellcheck words with international letters in them. This may not work with all dictionaries.");
+               break;
+
+       case RC_USE_SPELL_LIB:
                break;
 
-       default:
+       case RC_VIEWDVI_PAPEROPTION:
+               str = _("Specify the paper command to DVI viewer (leave empty or use \"-paper\")");
+               break;
+
+       case RC_VIEWER:
+               break;
+
+       case RC_WHEEL_JUMP:
+               str = _("The number of lines that are scrolled by mice with wheels or five button mice.");
+               break;
+
+       case RC_LAST:
                break;
        }