]> git.lyx.org Git - features.git/commitdiff
Restore XHTML output for InsetCitation.
authorRichard Heck <rgheck@comcast.net>
Mon, 30 Nov 2009 22:59:18 +0000 (22:59 +0000)
committerRichard Heck <rgheck@comcast.net>
Mon, 30 Nov 2009 22:59:18 +0000 (22:59 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32262 a592a061-630c-0410-9148-cb99ea01b6c8

src/insets/InsetCitation.cpp
src/insets/InsetCitation.h

index 5cc3768ef99bea9fccf962a036d52ee71c2550e6..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"
 
@@ -504,24 +505,24 @@ int InsetCitation::docbook(odocstream & os, OutputParams const &) const
 }
 
 
-docstring 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())
+       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,18 +530,19 @@ docstring 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";
+               xs << ", " << after;
+       xs << "]";
        return docstring();
 }
 
index 1ead91b5d05edc27e1e96d9a709d8ffd46fd0c38..e85c3b7d0f882aa6ef089b0cb41b8e3fb08317b6 100644 (file)
@@ -50,7 +50,7 @@ public:
        ///
        int docbook(odocstream &, OutputParams const &) const;
        ///
-       docstring xhtml(odocstream &, OutputParams const &) const;
+       docstring xhtml(XHTMLStream &, OutputParams const &) const;
        /// the string that is passed to the TOC
        void tocString(odocstream &) const;
        ///