]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetLabel.cpp
Strip et al. for citation search
[lyx.git] / src / insets / InsetLabel.cpp
index 7850e5e838f8ffb070a5139cd77db088a62dd66f..e143f83e29b066f54e5a77b826450589908aec85 100644 (file)
 
 #include "InsetRef.h"
 
-#include "buffer_funcs.h"
 #include "Buffer.h"
 #include "BufferParams.h"
-#include "BufferView.h"
+#include "Cursor.h"
 #include "CutAndPaste.h"
-#include "DispatchResult.h"
 #include "FuncRequest.h"
 #include "FuncStatus.h"
-#include "InsetIterator.h"
 #include "Language.h"
 #include "LyX.h"
-#include "output_xhtml.h"
 #include "ParIterator.h"
-#include "sgml.h"
+#include "xml.h"
 #include "texstream.h"
 #include "Text.h"
 #include "TextClass.h"
 #include "TocBackend.h"
 
-#include "mathed/InsetMathHull.h"
 #include "mathed/InsetMathRef.h"
 
 #include "frontends/alert.h"
@@ -41,7 +36,6 @@
 #include "support/convert.h"
 #include "support/gettext.h"
 #include "support/lstrings.h"
-#include "support/lyxalgo.h"
 
 using namespace std;
 using namespace lyx::support;
@@ -105,7 +99,8 @@ void InsetLabel::updateLabelAndRefs(docstring const & new_label,
        UndoGroupHelper ugh(&buffer());
        if (cursor)
                cursor->recordUndo();
-       if (buffer().masterParams().track_changes) {
+       bool const changes = buffer().masterParams().track_changes;
+       if (changes) {
                // With change tracking, we insert a new label and
                // delete the old one
                InsetCommandParams p(LABEL_CODE, "label");
@@ -115,15 +110,15 @@ void InsetLabel::updateLabelAndRefs(docstring const & new_label,
                lyx::dispatch(FuncRequest(LFUN_CHAR_DELETE_FORWARD));
        } else
                setParam("name", label);
-       updateReferences(old_label, label);
+       updateReferences(old_label, label, changes);
 }
 
 
 void InsetLabel::updateReferences(docstring const & old_label,
-               docstring const & new_label)
+               docstring const & new_label, bool const changes)
 {
-       UndoGroupHelper ugh;
-       if (buffer().masterParams().track_changes) {
+       UndoGroupHelper ugh(nullptr);
+       if (changes) {
                // With change tracking, we insert a new ref and
                // delete the old one
                lyx::dispatch(FuncRequest(LFUN_MASTER_BUFFER_FORALL,
@@ -161,19 +156,19 @@ docstring InsetLabel::screenLabel() const
 }
 
 
-void InsetLabel::updateBuffer(ParIterator const & par, UpdateType utype, bool const /*deleted*/)
+void InsetLabel::updateBuffer(ParIterator const & it, UpdateType utype, bool const /*deleted*/)
 {
        docstring const & label = getParam("name");
 
        // Check if this one is active (i.e., neither deleted with change-tracking
        // nor in an inset that does not produce output, such as notes or inactive branches)
-       Paragraph const & para = par.paragraph();
-       bool active = !para.isDeleted(par.pos()) && para.inInset().producesOutput();
+       Paragraph const & para = it.paragraph();
+       bool active = !para.isDeleted(it.pos()) && para.inInset().producesOutput();
        // If not, check whether we are in a deleted/non-outputting inset
        if (active) {
-               for (size_type sl = 0 ; sl < par.depth() ; ++sl) {
-                       Paragraph const & outer_par = par[sl].paragraph();
-                       if (outer_par.isDeleted(par[sl].pos())
+               for (size_type sl = 0 ; sl < it.depth() ; ++sl) {
+                       Paragraph const & outer_par = it[sl].paragraph();
+                       if (outer_par.isDeleted(it[sl].pos())
                            || !outer_par.inInset().producesOutput()) {
                                active = false;
                                break;
@@ -194,7 +189,7 @@ void InsetLabel::updateBuffer(ParIterator const & par, UpdateType utype, bool co
                Counters const & cnts =
                        buffer().masterBuffer()->params().documentClass().counters();
                active_counter_ = cnts.currentCounter();
-               Language const * lang = par->getParLanguage(buffer().params());
+               Language const * lang = it->getParLanguage(buffer().params());
                if (lang && !active_counter_.empty()) {
                        counter_value_ = cnts.theCounter(active_counter_, lang->code());
                        pretty_counter_ = cnts.prettyCounter(active_counter_, lang->code());
@@ -230,7 +225,7 @@ void InsetLabel::addToToc(DocIterator const & cpit, bool output_active,
                        else
                                toc->push_back(TocItem(ref_pit, 1,
                                                static_cast<InsetRef *>(p.first)->getTOCString(),
-                                               output_active));
+                                               static_cast<InsetRef *>(p.first)->outputActive()));
                }
        }
 }
@@ -316,12 +311,29 @@ void InsetLabel::latex(otexstream & os, OutputParams const & runparams_in) const
 {
        OutputParams runparams = runparams_in;
        docstring command = getCommand(runparams);
+       docstring const label = getParam("name");
+       if (buffer().params().output_changes
+           && buffer().activeLabel(label)
+           && buffer().insetLabel(label, true) != this) {
+               // this is a deleted label and we have a non-deleted with the same id
+               // rename it for output to prevent wrong references
+               docstring newlabel = label;
+               int i = 1;
+               while (buffer().insetLabel(newlabel)) {
+                       newlabel = label + "-DELETED-" + convert<docstring>(i);
+                       ++i;
+               }
+               command = subst(command, label, newlabel);
+       }
        // In macros with moving arguments, such as \section,
        // we store the label and output it after the macro (#2154)
        if (runparams_in.postpone_fragile_stuff)
                runparams_in.post_macro += command;
        else {
-               if (runparams.moving_arg)
+               // protect label in moving argument (#9404),
+               // but not in subfloat caption (#11950)
+               if (runparams.moving_arg
+                   && runparams.inFloat != OutputParams::SUBFLOAT)
                        os << "\\protect";
                os << command;
        }
@@ -337,24 +349,28 @@ int InsetLabel::plaintext(odocstringstream & os,
 }
 
 
-int InsetLabel::docbook(odocstream & os, OutputParams const & runparams) const
+void InsetLabel::docbook(XMLStream & xs, OutputParams const & runparams) const
 {
-       os << "<!-- anchor id=\""
-          << sgml::cleanID(buffer(), runparams, getParam("name"))
-          << "\" -->";
-       return 0;
+       // Output an anchor only if it has not been processed before.
+       docstring id = getParam("name");
+       docstring cleaned_id = xml::cleanID(id);
+       if (runparams.docbook_anchors_to_ignore.find(id) == runparams.docbook_anchors_to_ignore.end() &&
+               runparams.docbook_anchors_to_ignore.find(cleaned_id) == runparams.docbook_anchors_to_ignore.end()) {
+               docstring attr = from_utf8("xml:id=\"") + cleaned_id + from_utf8("\"");
+               xs << xml::CompTag("anchor", to_utf8(attr));
+       }
 }
 
 
-docstring InsetLabel::xhtml(XHTMLStream & xs, OutputParams const &) const
+docstring InsetLabel::xhtml(XMLStream & xs, OutputParams const &) const
 {
        // FIXME XHTML
        // Unfortunately, the name attribute has been deprecated, so we have to use
        // id here to get the document to validate as XHTML 1.1. This will cause a
        // problem with some browsers, though, I'm sure. (Guess which!) So we will
        // have to figure out what to do about this later.
-       docstring const attr = "id=\"" + html::cleanAttr(getParam("name")) + '"';
-       xs << html::CompTag("a", to_utf8(attr));
+       docstring const attr = "id=\"" + xml::cleanAttr(getParam("name")) + '"';
+       xs << xml::CompTag("a", to_utf8(attr));
        return docstring();
 }