From: Richard Heck Date: Tue, 12 Jan 2010 20:25:33 +0000 (+0000) Subject: Remove the test for "tableofcontents", since that is the only thing this X-Git-Tag: 2.0.0~4397 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=2f728e45f8bda597b47ca0e0cb545ce37988df6a;p=features.git Remove the test for "tableofcontents", since that is the only thing this inset supports right now. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32999 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/insets/InsetTOC.cpp b/src/insets/InsetTOC.cpp index 65bc29f2fd..b81f6a9393 100644 --- a/src/insets/InsetTOC.cpp +++ b/src/insets/InsetTOC.cpp @@ -85,66 +85,63 @@ docstring InsetTOC::xhtml(XHTMLStream &, OutputParams const & op) const odocstringstream ods; XHTMLStream xs(ods); - string const & cmdname = getCmdName(); - if (cmdname == "tableofcontents") { - Toc const & toc = buffer().tocBackend().toc("tableofcontents"); - if (toc.empty()) - return docstring(); - - xs << StartTag("div", "class='toc'"); - xs << StartTag("div", tocattr) - << _("Table of Contents") - << EndTag("div"); - Toc::const_iterator it = toc.begin(); - Toc::const_iterator const en = toc.end(); - int lastdepth = 0; - for (; it != en; ++it) { - Paragraph const & par = it->dit().innerParagraph(); - int const depth = it->depth(); - if (depth > buffer().params().tocdepth) - continue; - Font const dummy; - if (depth > lastdepth) { - xs.cr(); - // open as many tags as we need to open to get to this level - // this includes the tag for the current level - for (int i = lastdepth + 1; i <= depth; ++i) { - stringstream attr; - attr << "class='lyxtoc-" << i << "'"; - xs << StartTag("div", attr.str()); - } - lastdepth = depth; - } - else if (depth < lastdepth) { - // close as many as we have to close to get back to this level - // this includes closing the last tag at this level - for (int i = lastdepth; i >= depth; --i) - xs << EndTag("div"); - // now open our tag - stringstream attr; - attr << "class='lyxtoc-" << depth << "'"; - xs << StartTag("div", attr.str()); - lastdepth = depth; - } else { - // no change of level, so close and open - xs << EndTag("div"); + Toc const & toc = buffer().tocBackend().toc("tableofcontents"); + if (toc.empty()) + return docstring(); + + xs << StartTag("div", "class='toc'"); + xs << StartTag("div", tocattr) + << _("Table of Contents") + << EndTag("div"); + Toc::const_iterator it = toc.begin(); + Toc::const_iterator const en = toc.end(); + int lastdepth = 0; + for (; it != en; ++it) { + Paragraph const & par = it->dit().innerParagraph(); + int const depth = it->depth(); + if (depth > buffer().params().tocdepth) + continue; + Font const dummy; + if (depth > lastdepth) { + xs.cr(); + // open as many tags as we need to open to get to this level + // this includes the tag for the current level + for (int i = lastdepth + 1; i <= depth; ++i) { stringstream attr; - attr << "class='lyxtoc-" << depth << "'"; + attr << "class='lyxtoc-" << i << "'"; xs << StartTag("div", attr.str()); } - string const parattr = "href='#" + par.magicLabel() + "' class='tocarrow'"; - par.simpleLyXHTMLOnePar(buffer(), xs, op, dummy, true); - xs << " "; - xs << StartTag("a", parattr); - // FIXME XHTML - // There ought to be a simple way to customize this. - xs << XHTMLStream::NextRaw() << "⇘"; - xs << EndTag("a"); + lastdepth = depth; } - for (int i = lastdepth; i > 0; --i) + else if (depth < lastdepth) { + // close as many as we have to close to get back to this level + // this includes closing the last tag at this level + for (int i = lastdepth; i >= depth; --i) + xs << EndTag("div"); + // now open our tag + stringstream attr; + attr << "class='lyxtoc-" << depth << "'"; + xs << StartTag("div", attr.str()); + lastdepth = depth; + } else { + // no change of level, so close and open xs << EndTag("div"); - xs << EndTag("div"); + stringstream attr; + attr << "class='lyxtoc-" << depth << "'"; + xs << StartTag("div", attr.str()); + } + string const parattr = "href='#" + par.magicLabel() + "' class='tocarrow'"; + par.simpleLyXHTMLOnePar(buffer(), xs, op, dummy, true); + xs << " "; + xs << StartTag("a", parattr); + // FIXME XHTML + // There ought to be a simple way to customize this. + xs << XHTMLStream::NextRaw() << "⇘"; + xs << EndTag("a"); } + for (int i = lastdepth; i > 0; --i) + xs << EndTag("div"); + xs << EndTag("div"); return ods.str(); }