Fix problem with branch handling. The problem was that we were not

dealing properly with the paragraph separator tag.

We really need to use that tag as a kind of general marker for which
tags we're responsible for in a given paragraph and which tags we are
not. So the changes to InsetText.cpp use the tag as that kind of marker.

Note that, as of this commit, the User Guide again exports without any
kind of error. I haven't yet checked the other manuals.

This fixes bug #8022.

(cherry picked from commit 31e25c8ec6)
This commit is contained in:
Richard Heck 2016-07-09 23:12:32 -04:00
parent 275bdcd845
commit 909fcb7fcc
5 changed files with 51 additions and 21 deletions

View File

@ -2760,7 +2760,8 @@ void doFontSwitch(vector<html::FontTag> & tagsToOpen,
docstring Paragraph::simpleLyXHTMLOnePar(Buffer const & buf,
XHTMLStream & xs,
OutputParams const & runparams,
Font const & outerfont,
Font const & outerfont,
bool start_paragraph, bool close_paragraph,
pos_type initial) const
{
docstring retval;
@ -2782,7 +2783,8 @@ docstring Paragraph::simpleLyXHTMLOnePar(Buffer const & buf,
Layout const & style = *d->layout_;
xs.startParagraph(allowEmpty());
if (start_paragraph)
xs.startParagraph(allowEmpty());
FontInfo font_old =
style.labeltype == LABEL_MANUAL ? style.labelfont : style.font;
@ -3068,7 +3070,9 @@ docstring Paragraph::simpleLyXHTMLOnePar(Buffer const & buf,
if (!runparams.for_toc || inset->isInToc()) {
OutputParams np = runparams;
np.local_font = &font;
if (!inset->getLayout().htmlisblock())
// If the paragraph has size 1, then we are in the "special
// case" where we do not output the containing paragraph info
if (!inset->getLayout().htmlisblock() && size() != 1)
np.html_in_par = true;
retval += inset->xhtml(xs, np);
}
@ -3079,8 +3083,13 @@ docstring Paragraph::simpleLyXHTMLOnePar(Buffer const & buf,
font_old = font.fontInfo();
}
// FIXME XHTML
// I'm worried about what happens if a branch, say, is itself
// wrapped in some font stuff. I think that will not work.
xs.closeFontTags();
xs.endParagraph();
if (close_paragraph)
xs.endParagraph();
return retval;
}

View File

@ -222,6 +222,8 @@ public:
XHTMLStream & xs,
OutputParams const & runparams,
Font const & outerfont,
bool start_paragraph = true,
bool close_paragraph = true,
pos_type initial = 0) const;
///

View File

@ -588,7 +588,9 @@ docstring InsetText::insetAsXHTML(XHTMLStream & xs, OutputParams const & rp,
runparams.par_end = text().paragraphs().size();
if (undefined()) {
xs.startParagraph(false);
xhtmlParagraphs(text_, buffer(), xs, runparams);
xs.endParagraph();
return docstring();
}
@ -622,7 +624,9 @@ docstring InsetText::insetAsXHTML(XHTMLStream & xs, OutputParams const & rp,
if (il.isPassThru())
runparams.pass_thru = true;
xs.startParagraph(false);
xhtmlParagraphs(text_, buffer(), xs, runparams);
xs.endParagraph();
if (opts & WriteInnerTag)
xs << html::EndTag(il.htmlinnertag());

View File

@ -832,25 +832,26 @@ ParagraphList::const_iterator makeParagraphs(Buffer const & buf,
if (!lay.counter.empty())
buf.masterBuffer()->params().
documentClass().counters().step(lay.counter, OutputUpdate);
// FIXME We should see if there's a label to be output and
// do something with it.
if (par != pbegin)
xs << html::CR();
// If we are already in a paragraph, and this is the first one, then we
// do not want to open the paragraph tag.
// we also do not want to open it if the current layout does not permit
// multiple paragraphs.
bool const opened = runparams.html_make_pars &&
(par != pbegin || !runparams.html_in_par);
bool const make_parid = !runparams.for_toc && runparams.html_make_pars;
// We want to open the paragraph tag if:
// (i) the current layout permits multiple paragraphs
// (ii) we are either not already inside a paragraph (HTMLIsBlock) OR
// we are, but this is not the first paragraph
// But we do not want to open the paragraph tag if this paragraph contains
// only one item, and that item is "inline", i.e., not HTMLIsBlock (such
// as a branch). That is the "special case" we handle first.
Inset const * specinset = par->size() == 1 ? par->getInset(0) : 0;
bool const special_case =
specinset && !specinset->getLayout().htmlisblock();
if (opened)
openParTag(xs, lay, par->params(),
make_parid ? par->magicLabel() : "");
docstring const deferred =
par->simpleLyXHTMLOnePar(buf, xs, runparams, text.outerFont(distance(begin, par)));
bool const opened = runparams.html_make_pars
&& (!runparams.html_in_par || par != pbegin)
&& !special_case;
// We want to issue the closing tag if either:
// (i) We opened it, and either html_in_par is false,
@ -862,13 +863,25 @@ ParagraphList::const_iterator makeParagraphs(Buffer const & buf,
bool const needclose =
(opened && (!runparams.html_in_par || nextpar != pend))
|| (!opened && runparams.html_in_par && par == pbegin && nextpar != pend);
if (opened) {
// We do not issue the paragraph id if we are doing
// this for the TOC (or some similar purpose)
openParTag(xs, lay, par->params(),
runparams.for_toc ? "" : par->magicLabel());
}
docstring const deferred = par->simpleLyXHTMLOnePar(buf, xs,
runparams, text.outerFont(distance(begin, par)),
opened, needclose);
if (!deferred.empty()) {
xs << XHTMLStream::ESCAPE_NONE << deferred << html::CR();
}
if (needclose) {
closeTag(xs, lay);
xs << html::CR();
}
if (!deferred.empty()) {
xs << XHTMLStream::ESCAPE_NONE << deferred << html::CR();
}
}
return pend;
}
@ -995,7 +1008,7 @@ ParagraphList::const_iterator makeEnvironment(Buffer const & buf,
openItemTag(xs, style, par->params());
par->simpleLyXHTMLOnePar(buf, xs, runparams,
text.outerFont(distance(begin, par)), sep);
text.outerFont(distance(begin, par)), true, true, sep);
++par;
// We may not want to close the tag yet, in particular:

View File

@ -71,6 +71,8 @@ What's new
* LYXHTML
Fix problem with output of branches (bug 8022).
* TEX2LYX