]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetCitation.cpp
Restore XHTML output for InsetCitation.
[lyx.git] / src / insets / InsetCitation.cpp
index 25038a7e61db07748352816bc1e607d18b79393f..93e79263f6f64f331457a3aee8a2b1611424a5e2 100644 (file)
@@ -20,6 +20,7 @@
 #include "DispatchResult.h"
 #include "FuncRequest.h"
 #include "LaTeXFeatures.h"
+#include "output_xhtml.h"
 #include "ParIterator.h"
 #include "TocBackend.h"
 
@@ -355,8 +356,8 @@ docstring basicLabel(docstring const & keyList, docstring const & after)
 ParamInfo InsetCitation::param_info_;
 
 
-InsetCitation::InsetCitation(InsetCommandParams const & p)
-       : InsetCommand(p, "citation")
+InsetCitation::InsetCitation(Buffer * buf, InsetCommandParams const & p)
+       : InsetCommand(buf, p, "citation")
 {}
 
 
@@ -466,7 +467,7 @@ void InsetCitation::updateLabels(ParIterator const &)
 void InsetCitation::addToToc(DocIterator const & cpit)
 {
        Toc & toc = buffer().tocBackend().toc("citation");
-       toc.push_back(TocItem(cpit, 0, cache.screen_label));
+       toc.push_back(TocItem(cpit, 0, getParam("key")));
 }
 
 
@@ -504,24 +505,24 @@ int InsetCitation::docbook(odocstream & os, OutputParams const &) const
 }
 
 
-int InsetCitation::xhtml(odocstream & os, OutputParams const &) const
+docstring InsetCitation::xhtml(XHTMLStream & xs, OutputParams const &) const
 {
        BiblioInfo const & bi = buffer().masterBibInfo();
-       docstring const & keyList = getParam("key");
-       if (keyList.empty())
-               return 0;
+       docstring const & key_list = getParam("key");
+       if (key_list.empty())
+               return docstring();
 
        // FIXME We shuld do a better job outputing different things for the
        // different citation styles.   For now, we use square brackets for every
        // case.
-       os << '[';
+       xs << "[";
        docstring const & before = getParam("before");
        if (!before.empty())
-               os << before << " ";
+               xs << before << " ";
 
-       vector<docstring> keys = getVectorFromString(keyList);
+       vector<docstring> const keys = getVectorFromString(key_list);
        vector<docstring>::const_iterator it = keys.begin();
-       vector<docstring>::const_iterator en = keys.end();
+       vector<docstring>::const_iterator const en = keys.end();
        bool first = true;
        for (; it != en; ++it) {
                BiblioInfo::const_iterator const bt = bi.find(*it);
@@ -529,19 +530,20 @@ int InsetCitation::xhtml(odocstream & os, OutputParams const &) const
                        continue;
                BibTeXInfo const & bibinfo = bt->second;
                if (!first) {
-                       os << ", ";
+                       xs << ", ";
                        first = false;
                }
                docstring const & label = bibinfo.label();
                docstring const & target = label.empty() ? *it : label;
-               os << "<a href='#" << *it << "'>" << target << "</a>";
+               string const attr = "href='#" + to_utf8(*it) + "'";
+               xs << StartTag("a", attr) << target << EndTag("a");
        }
 
        docstring const & after = getParam("after");
        if (!after.empty())
-               os << ", " << after;
-       os << "]\n";
-       return 0;
+               xs << ", " << after;
+       xs << "]";
+       return docstring();
 }