]> git.lyx.org Git - features.git/commitdiff
Get XHTML output for InsetCitation working, at least in a primitive way.
authorRichard Heck <rgheck@comcast.net>
Thu, 11 Jun 2009 21:04:15 +0000 (21:04 +0000)
committerRichard Heck <rgheck@comcast.net>
Thu, 11 Jun 2009 21:04:15 +0000 (21:04 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@30049 a592a061-630c-0410-9148-cb99ea01b6c8

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

index 7b1dbc5a49d5e327acde7def69fe74f1715405e7..25038a7e61db07748352816bc1e607d18b79393f 100644 (file)
@@ -417,8 +417,8 @@ docstring InsetCitation::toolTip(BufferView const & bv, int, int) const
 
 docstring InsetCitation::generateLabel() const
 {
-       docstring const before = getParam("before");
-       docstring const after  = getParam("after");
+       docstring const before = getParam("before");
+       docstring const after  = getParam("after");
 
        docstring label;
        CiteEngine const engine = buffer().params().citeEngine();
@@ -504,6 +504,47 @@ int InsetCitation::docbook(odocstream & os, OutputParams const &) const
 }
 
 
+int InsetCitation::xhtml(odocstream & os, OutputParams const &) const
+{
+       BiblioInfo const & bi = buffer().masterBibInfo();
+       docstring const & keyList = getParam("key");
+       if (keyList.empty())
+               return 0;
+
+       // 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 << '[';
+       docstring const & before = getParam("before");
+       if (!before.empty())
+               os << before << " ";
+
+       vector<docstring> keys = getVectorFromString(keyList);
+       vector<docstring>::const_iterator it = keys.begin();
+       vector<docstring>::const_iterator en = keys.end();
+       bool first = true;
+       for (; it != en; ++it) {
+               BiblioInfo::const_iterator const bt = bi.find(*it);
+               if (bt == bi.end())
+                       continue;
+               BibTeXInfo const & bibinfo = bt->second;
+               if (!first) {
+                       os << ", ";
+                       first = false;
+               }
+               docstring const & label = bibinfo.label();
+               docstring const & target = label.empty() ? *it : label;
+               os << "<a href='#" << *it << "'>" << target << "</a>";
+       }
+
+       docstring const & after = getParam("after");
+       if (!after.empty())
+               os << ", " << after;
+       os << "]\n";
+       return 0;
+}
+
+
 void InsetCitation::tocString(odocstream & os) const
 {
        plaintext(os, OutputParams(0));
index 4567077a423d5e5693d1a2c4f1eb10aa7c277534..04cc480eb59e5673d2d6d88449e9ebda0f46425f 100644 (file)
@@ -49,6 +49,8 @@ public:
        int plaintext(odocstream &, OutputParams const &) const;
        ///
        int docbook(odocstream &, OutputParams const &) const;
+       ///
+       int xhtml(odocstream &, OutputParams const &) const;
        /// the string that is passed to the TOC
        void tocString(odocstream &) const;
        ///