]> git.lyx.org Git - features.git/commitdiff
Working attempt at fixing #8357 in branch
authorJuergen Spitzmueller <spitz@lyx.org>
Fri, 28 Sep 2012 14:04:04 +0000 (16:04 +0200)
committerJuergen Spitzmueller <spitz@lyx.org>
Fri, 28 Sep 2012 14:04:04 +0000 (16:04 +0200)
src/insets/InsetHyperlink.cpp
status.20x

index e87103ac13a757efb1a5d32a5dab69c1d6243350..daaa8700d635ed346e5c157a27efddaa333c9554 100644 (file)
@@ -15,6 +15,7 @@
 
 #include "Buffer.h"
 #include "DispatchResult.h"
+#include "Encoding.h"
 #include "Format.h"
 #include "FuncRequest.h"
 #include "FuncStatus.h"
 #include "OutputParams.h"
 #include "output_xhtml.h"
 
+#include "support/debug.h"
 #include "support/docstream.h"
 #include "support/FileName.h"
 #include "support/filetools.h"
 #include "support/gettext.h"
 #include "support/lstrings.h"
 
+#include "frontends/alert.h"
+
 using namespace std;
 using namespace lyx::support;
 
@@ -185,7 +189,40 @@ void InsetHyperlink::latex(otexstream & os,
                        (pos = name.find('~', i)) != string::npos;
                        i = pos + 1)
                        name.replace(pos, 1, sim);
-
+               docstring name_latex;
+               docstring uncodable;
+               // validate encoding
+               for (size_t n = 0; n < name.size(); ++n) {
+                       try {
+                               char_type const c = name[n];
+                               docstring const latex = runparams.encoding->latexChar(c);
+                               name_latex += latex;
+                               if (latex.length() > 1 && latex[latex.length() - 1] != '}') {
+                                       // Prevent eating of a following
+                                       // space or command corruption by
+                                       // following characters
+                                       name_latex += "{}";
+                               }
+                       } catch (EncodingException & /* e */) {
+                               LYXERR0("Uncodable character in href inset!");
+                               if (runparams.dryrun) {
+                                       name_latex += "<" + _("LyX Warning: ")
+                                                  + _("uncodable character") + " '";
+                                       name_latex += docstring(1, name[n]);
+                                       name_latex += "'>";
+                               } else
+                                       uncodable += name[n];
+                       }
+               }
+               if (!uncodable.empty()) {
+                       // issue a warning about omitted characters
+                       // FIXME: should be passed to the error dialog
+                       frontend::Alert::warning(_("Uncodable characters"),
+                               bformat(_("The following characters that are used in the href inset are not\n"
+                                         "representable in the current encoding and therefore have been omitted:\n%1$s."),
+                                       uncodable));
+               }
+               name = name_latex;
        }  // end if (!name.empty())
        
        if (runparams.moving_arg)
index 739846f04ddacecd13e7e619a0a745dc76a2d771..6e60d8d9c151df07858097a2e823be6fcf683b35 100644 (file)
@@ -86,6 +86,8 @@ What's new
 - Export correct language change commands if document contains different
   CJK languages (bug 8215).
 
+- Fix encoding problems in hyperlink name field (bug 8357).
+
 - Fix bug that Elsevier documents became uncompilable when using refstyle for
   cross-references.