]> git.lyx.org Git - features.git/commitdiff
escape label in included listings
authorJuergen Spitzmueller <spitz@lyx.org>
Mon, 19 Feb 2018 16:15:31 +0000 (17:15 +0100)
committerRichard Heck <rgheck@lyx.org>
Sat, 17 Mar 2018 19:44:05 +0000 (15:44 -0400)
Also use docstring rather than string.

Fixes part of #10544

(cherry picked from commit 0bf88651229bddc34b9856c7fa025245aa4246b8)

src/insets/InsetInclude.cpp
status.23x

index d6e3ae2c63f9a7e808b6d0f62dd557b17528cc43..7b6f38950f0cbc0229f4518ad04d2828a121ff89 100644 (file)
@@ -618,43 +618,51 @@ void InsetInclude::latex(otexstream & os, OutputParams const & runparams) const
                string const opt = to_utf8(params()["lstparams"]);
                // opt is set in QInclude dialog and should have passed validation.
                InsetListingsParams lstparams(opt);
-               string parameters = lstparams.params();
-               string language;
-               string caption;
-               string label;
-               string placement;
+               docstring parameters = from_utf8(lstparams.params());
+               docstring language;
+               docstring caption;
+               docstring label;
+               docstring placement;
                bool isfloat = lstparams.isFloat();
-               if (use_minted) {
-                       // Get float placement, language, caption, and
-                       // label, then remove the relative options.
-                       vector<string> opts =
-                               getVectorFromString(parameters, ",", false);
-                       for (size_t i = 0; i < opts.size(); ++i) {
-                               if (prefixIs(opts[i], "float")) {
-                                       if (prefixIs(opts[i], "float="))
-                                               placement = opts[i].substr(6);
-                                       opts.erase(opts.begin() + i--);
-                               } else if (prefixIs(opts[i], "language=")) {
-                                       language = opts[i].substr(9);
-                                       opts.erase(opts.begin() + i--);
-                               } else if (prefixIs(opts[i], "caption=")) {
-                                       caption = opts[i].substr(8);
-                                       opts.erase(opts.begin() + i--);
-                               } else if (prefixIs(opts[i], "label=")) {
-                                       label = opts[i].substr(6);
-                                       opts.erase(opts.begin() + i--);
-                               }
+               // Get float placement, language, caption, and
+               // label, then remove the relative options if minted.
+               vector<docstring> opts =
+                       getVectorFromString(parameters, from_ascii(","), false);
+               vector<docstring> latexed_opts;
+               for (size_t i = 0; i < opts.size(); ++i) {
+                       if (use_minted && prefixIs(opts[i], from_ascii("float"))) {
+                               if (prefixIs(opts[i], from_ascii("float=")))
+                                       placement = opts[i].substr(6);
+                               opts.erase(opts.begin() + i--);
+                       } else if (use_minted && prefixIs(opts[i], from_ascii("language="))) {
+                               language = opts[i].substr(9);
+                               opts.erase(opts.begin() + i--);
+                       } else if (prefixIs(opts[i], from_ascii("caption="))) {
+                               // FIXME We should use HANDLING_LATEXIFY here,
+                               // but that's a file format change (see #10455).
+                               caption = opts[i].substr(8);
+                               opts.erase(opts.begin() + i--);
+                               if (!use_minted)
+                                       latexed_opts.push_back(from_ascii("caption=") + caption);
+                       } else if (prefixIs(opts[i], from_ascii("label="))) {
+                               label = params().prepareCommand(runparams, trim(opts[i].substr(6), "{}"),
+                                                               ParamInfo::HANDLING_ESCAPE);
+                               opts.erase(opts.begin() + i--);
+                               if (!use_minted)
+                                       latexed_opts.push_back(from_ascii("label={") + label + "}");
                        }
-                       if (!label.empty()) {
+                       if (use_minted && !label.empty()) {
                                if (isfloat || !caption.empty())
                                        label = trim(label, "{}");
                                else
-                                       opts.push_back("label=" + label);
+                                       opts.push_back(from_ascii("label=") + label);
                        }
-                       parameters = getStringFromVector(opts, ",");
                }
+               if (!latexed_opts.empty())
+                       opts.insert(opts.end(), latexed_opts.begin(), latexed_opts.end());
+               parameters = getStringFromVector(opts, from_ascii(","));
                if (language.empty())
-                       language = "TeX";
+                       language = from_ascii("TeX");
                if (use_minted && isfloat) {
                        os << breakln << "\\begin{listing}";
                        if (!placement.empty())
index fc321d3e2566927dceb78a8408c5d36266847497..74dc00f2781c673c83716cce2e625478a007f1f9 100644 (file)
@@ -34,6 +34,9 @@ What's new
 
 * DOCUMENT INPUT/OUTPUT
 
+- Properly escape labels entered for included program listings in Insert > File
+  > Child Document (part of bug 10544).
+
 
 * LYX2LYX