mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 19:07:45 +00:00
Revert "DocBook: simplify code to handle abstracts."
This reverts commit 0199e048ff
.
This commit is contained in:
parent
f025538c95
commit
42eca3d8d6
@ -19,10 +19,8 @@
|
|||||||
<affiliation role="alternate"><orgname>Patron, Alonso's Bar and Grill</orgname></affiliation></author>
|
<affiliation role="alternate"><orgname>Patron, Alonso's Bar and Grill</orgname></affiliation></author>
|
||||||
<abstract><para>
|
<abstract><para>
|
||||||
<para>This is a preliminary report on surface photometry of the major fraction of known globular clusters, to see which of them show the signs of a collapsed core. We also explore some diversionary mathematics and recreational tables. </para>
|
<para>This is a preliminary report on surface photometry of the major fraction of known globular clusters, to see which of them show the signs of a collapsed core. We also explore some diversionary mathematics and recreational tables. </para>
|
||||||
<!-- Output Error: Tried to close `keyword' when tag was not open. Tag discarded. -->
|
<!-- Output Error: Tried to close `Keywords' when tag was not open. Tag discarded. -->
|
||||||
<!-- Output Error: Tried to close `keywordset' when tag was not open. Tag discarded. -->
|
|
||||||
|
|
||||||
<keywordset><keyword>clusters: globular, peanut—bosons: bozos</keyword></keywordset>
|
|
||||||
<!-- Output Error: Closing tag `info' when other tags are open, namely: -->
|
<!-- Output Error: Closing tag `info' when other tags are open, namely: -->
|
||||||
<!-- Output Error: para -->
|
<!-- Output Error: para -->
|
||||||
</para><!-- Output Error: abstract -->
|
</para><!-- Output Error: abstract -->
|
||||||
|
@ -282,9 +282,6 @@ Style Abstract
|
|||||||
Series Bold
|
Series Bold
|
||||||
Size Normal
|
Size Normal
|
||||||
EndFont
|
EndFont
|
||||||
DocBookTag abstract
|
|
||||||
DocBookItemTag para
|
|
||||||
DocBookInInfo always
|
|
||||||
End
|
End
|
||||||
|
|
||||||
|
|
||||||
@ -334,9 +331,6 @@ Style Keywords
|
|||||||
Shape Italic
|
Shape Italic
|
||||||
Size Normal
|
Size Normal
|
||||||
EndFont
|
EndFont
|
||||||
DocBookTag keyword
|
|
||||||
DocBookWrapperTag keywordset
|
|
||||||
DocBookInInfo always
|
|
||||||
End
|
End
|
||||||
|
|
||||||
|
|
||||||
|
@ -50,7 +50,7 @@ namespace lyx {
|
|||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
std::string fontToDocBookTag(xml::FontTypes type)
|
std::string const fontToDocBookTag(xml::FontTypes type)
|
||||||
{
|
{
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case xml::FontTypes::FT_EMPH:
|
case xml::FontTypes::FT_EMPH:
|
||||||
@ -90,7 +90,6 @@ std::string fontToDocBookTag(xml::FontTypes type)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
string fontToRole(xml::FontTypes type)
|
string fontToRole(xml::FontTypes type)
|
||||||
{
|
{
|
||||||
// Specific fonts are achieved with roles. The only common ones are "" for basic emphasis,
|
// Specific fonts are achieved with roles. The only common ones are "" for basic emphasis,
|
||||||
@ -104,13 +103,14 @@ string fontToRole(xml::FontTypes type)
|
|||||||
return "";
|
return "";
|
||||||
case xml::FontTypes::FT_BOLD:
|
case xml::FontTypes::FT_BOLD:
|
||||||
return "bold";
|
return "bold";
|
||||||
case xml::FontTypes::FT_NOUN: // Outputs a <person>
|
case xml::FontTypes::FT_NOUN:
|
||||||
case xml::FontTypes::FT_TYPE: // Outputs a <code>
|
return ""; // Outputs a <person>
|
||||||
return "";
|
case xml::FontTypes::FT_TYPE:
|
||||||
|
return ""; // Outputs a <code>
|
||||||
case xml::FontTypes::FT_UBAR:
|
case xml::FontTypes::FT_UBAR:
|
||||||
return "underline";
|
return "underline";
|
||||||
|
|
||||||
// All other roles are non-standard for DocBook.
|
// All other roles are non-standard for DocBook.
|
||||||
|
|
||||||
case xml::FontTypes::FT_WAVE:
|
case xml::FontTypes::FT_WAVE:
|
||||||
return "wave";
|
return "wave";
|
||||||
@ -814,21 +814,7 @@ pair<ParagraphList::const_iterator, ParagraphList::const_iterator> makeAny(
|
|||||||
|
|
||||||
|
|
||||||
using DocBookDocumentSectioning = tuple<bool, pit_type>;
|
using DocBookDocumentSectioning = tuple<bool, pit_type>;
|
||||||
|
using DocBookInfoTag = tuple<set<pit_type>, set<pit_type>, pit_type, pit_type>;
|
||||||
|
|
||||||
struct DocBookInfoTag
|
|
||||||
{
|
|
||||||
const set<pit_type> shouldBeInInfo;
|
|
||||||
const set<pit_type> mustBeInInfo;
|
|
||||||
const set<pit_type> abstract;
|
|
||||||
pit_type bpit;
|
|
||||||
pit_type epit;
|
|
||||||
|
|
||||||
DocBookInfoTag(const set<pit_type> & shouldBeInInfo, const set<pit_type> & mustBeInInfo,
|
|
||||||
const set<pit_type> & abstract, pit_type bpit, pit_type epit) :
|
|
||||||
shouldBeInInfo(shouldBeInInfo), mustBeInInfo(mustBeInInfo), abstract(abstract),
|
|
||||||
bpit(bpit), epit(epit) {}
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
DocBookDocumentSectioning hasDocumentSectioning(ParagraphList const ¶graphs, pit_type bpit, pit_type const epit) {
|
DocBookDocumentSectioning hasDocumentSectioning(ParagraphList const ¶graphs, pit_type bpit, pit_type const epit) {
|
||||||
@ -861,7 +847,6 @@ bool hasOnlyNotes(Paragraph const & par)
|
|||||||
DocBookInfoTag getParagraphsWithInfo(ParagraphList const ¶graphs, pit_type bpit, pit_type const epit) {
|
DocBookInfoTag getParagraphsWithInfo(ParagraphList const ¶graphs, pit_type bpit, pit_type const epit) {
|
||||||
set<pit_type> shouldBeInInfo;
|
set<pit_type> shouldBeInInfo;
|
||||||
set<pit_type> mustBeInInfo;
|
set<pit_type> mustBeInInfo;
|
||||||
set<pit_type> abstract;
|
|
||||||
|
|
||||||
// Find the first non empty paragraph by mutating bpit.
|
// Find the first non empty paragraph by mutating bpit.
|
||||||
while (bpit < epit) {
|
while (bpit < epit) {
|
||||||
@ -874,18 +859,14 @@ DocBookInfoTag getParagraphsWithInfo(ParagraphList const ¶graphs, pit_type b
|
|||||||
|
|
||||||
// Find the last info-like paragraph.
|
// Find the last info-like paragraph.
|
||||||
pit_type cpit = bpit;
|
pit_type cpit = bpit;
|
||||||
bool hasAbstractLayout = false;
|
|
||||||
while (cpit < epit) {
|
while (cpit < epit) {
|
||||||
// Skip paragraphs only containing one note.
|
// Skip paragraphs only containing one note.
|
||||||
Paragraph const & par = paragraphs[cpit];
|
Paragraph const &par = paragraphs[cpit];
|
||||||
if (hasOnlyNotes(par)) {
|
if (hasOnlyNotes(par)) {
|
||||||
cpit += 1;
|
cpit += 1;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (par.layout().name() == from_ascii("Abstract"))
|
|
||||||
hasAbstractLayout = true;
|
|
||||||
|
|
||||||
// Based on layout information, store this paragraph in one set: should be in <info>, must be.
|
// Based on layout information, store this paragraph in one set: should be in <info>, must be.
|
||||||
Layout const &style = par.layout();
|
Layout const &style = par.layout();
|
||||||
|
|
||||||
@ -895,55 +876,42 @@ DocBookInfoTag getParagraphsWithInfo(ParagraphList const ¶graphs, pit_type b
|
|||||||
shouldBeInInfo.emplace(cpit);
|
shouldBeInInfo.emplace(cpit);
|
||||||
} else {
|
} else {
|
||||||
// Hypothesis: the <info> parts should be grouped together near the beginning bpit.
|
// Hypothesis: the <info> parts should be grouped together near the beginning bpit.
|
||||||
// There may be notes in between, but nothing else.
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
cpit += 1;
|
cpit += 1;
|
||||||
}
|
}
|
||||||
// Now, cpit points to the last paragraph that has things that could go in <info>.
|
// Now, cpit points to the last paragraph that has things that could go in <info>.
|
||||||
// bpit is the beginning of the <info> part.
|
// bpit is still the beginning of the <info> part.
|
||||||
|
|
||||||
// Go once again through the list of paragraphs to find the abstract. If there is an abstract
|
return make_tuple(shouldBeInInfo, mustBeInInfo, bpit, cpit);
|
||||||
// layout, only consider it. Otherwise, an abstract is just a sequence of paragraphs with text.
|
}
|
||||||
if (hasAbstractLayout) {
|
|
||||||
pit_type pit = bpit;
|
|
||||||
while (pit < cpit) { // Don't overshoot the <info> part.
|
|
||||||
if (paragraphs[pit].layout().name() == from_ascii("Abstract"))
|
|
||||||
abstract.emplace(pit);
|
|
||||||
pit++;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
pit_type lastAbstract = epit + 1; // A nonsensical value.
|
|
||||||
docstring lastAbstractLayout;
|
|
||||||
|
|
||||||
pit_type pit = bpit;
|
|
||||||
while (pit < cpit) { // Don't overshoot the <info> part.
|
|
||||||
const Paragraph & par = paragraphs.at(pit);
|
|
||||||
if (!par.insetList().empty()) {
|
|
||||||
for (const auto &i : par.insetList()) {
|
|
||||||
if (i.inset->getText(0) != nullptr) {
|
|
||||||
if (lastAbstract == epit + 1) {
|
|
||||||
// First paragraph that matches the heuristic definition of abstract.
|
|
||||||
lastAbstract = pit;
|
|
||||||
lastAbstractLayout = par.layout().name();
|
|
||||||
} else if (pit > lastAbstract + 1 || par.layout().name() != lastAbstractLayout) {
|
|
||||||
// This is either too far from the last abstract paragraph or doesn't
|
|
||||||
// have the right layout name, BUT there has already been an abstract
|
|
||||||
// in this document: done with detecting the abstract.
|
|
||||||
goto done; // Easier to get out of two nested loops.
|
|
||||||
}
|
|
||||||
|
|
||||||
abstract.emplace(pit);
|
bool hasAbstractBetween(ParagraphList const ¶graphs, pit_type const bpitAbstract, pit_type const epitAbstract)
|
||||||
break;
|
{
|
||||||
}
|
// Hypothesis: the paragraphs between bpitAbstract and epitAbstract can be considered an abstract because they
|
||||||
|
// are just after a document or part title.
|
||||||
|
if (epitAbstract - bpitAbstract <= 0)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
// If there is something between these paragraphs, check if it's compatible with an abstract (i.e. some text).
|
||||||
|
pit_type bpit = bpitAbstract;
|
||||||
|
while (bpit < epitAbstract) {
|
||||||
|
const Paragraph &p = paragraphs.at(bpit);
|
||||||
|
|
||||||
|
if (p.layout().name() == from_ascii("Abstract"))
|
||||||
|
return true;
|
||||||
|
|
||||||
|
if (!p.insetList().empty()) {
|
||||||
|
for (const auto &i : p.insetList()) {
|
||||||
|
if (i.inset->getText(0) != nullptr) {
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
pit++;
|
|
||||||
}
|
}
|
||||||
|
bpit++;
|
||||||
}
|
}
|
||||||
|
return false;
|
||||||
done:
|
|
||||||
return DocBookInfoTag(shouldBeInInfo, mustBeInInfo, abstract, bpit, cpit);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -979,18 +947,26 @@ void outputDocBookInfo(
|
|||||||
XMLStream & xs,
|
XMLStream & xs,
|
||||||
OutputParams const & runparams,
|
OutputParams const & runparams,
|
||||||
ParagraphList const & paragraphs,
|
ParagraphList const & paragraphs,
|
||||||
DocBookInfoTag const & info)
|
DocBookInfoTag const & info,
|
||||||
|
pit_type bpitAbstract,
|
||||||
|
pit_type const epitAbstract)
|
||||||
{
|
{
|
||||||
|
// Consider everything between bpitAbstract and epitAbstract (excluded) as paragraphs for the abstract.
|
||||||
|
// Use bpitAbstract >= epitAbstract to indicate there is no abstract.
|
||||||
|
|
||||||
|
set<pit_type> shouldBeInInfo;
|
||||||
|
set<pit_type> mustBeInInfo;
|
||||||
|
pit_type bpitInfo;
|
||||||
|
pit_type epitInfo;
|
||||||
|
tie(shouldBeInInfo, mustBeInInfo, bpitInfo, epitInfo) = info;
|
||||||
|
|
||||||
// Perform an additional check on the abstract. Sometimes, there are many paragraphs that should go
|
// Perform an additional check on the abstract. Sometimes, there are many paragraphs that should go
|
||||||
// into the abstract, but none generates actual content. Thus, first generate to a temporary stream,
|
// into the abstract, but none generates actual content. Thus, first generate to a temporary stream,
|
||||||
// then only create the <abstract> tag if these paragraphs generate some content.
|
// then only create the <abstract> tag if these paragraphs generate some content.
|
||||||
// This check must be performed *before* a decision on whether or not to output <info> is made.
|
// This check must be performed *before* a decision on whether or not to output <info> is made.
|
||||||
bool hasAbstract = !info.abstract.empty();
|
bool hasAbstract = hasAbstractBetween(paragraphs, bpitAbstract, epitAbstract);
|
||||||
docstring abstract;
|
docstring abstract;
|
||||||
if (hasAbstract) {
|
if (hasAbstract) {
|
||||||
pit_type bpitAbstract = *std::min_element(info.abstract.begin(), info.abstract.end());
|
|
||||||
pit_type epitAbstract = *std::max_element(info.abstract.begin(), info.abstract.end());
|
|
||||||
|
|
||||||
odocstringstream os2;
|
odocstringstream os2;
|
||||||
XMLStream xs2(os2);
|
XMLStream xs2(os2);
|
||||||
generateDocBookParagraphWithoutSectioning(text, buf, xs2, runparams, paragraphs, bpitAbstract, epitAbstract);
|
generateDocBookParagraphWithoutSectioning(text, buf, xs2, runparams, paragraphs, bpitAbstract, epitAbstract);
|
||||||
@ -1007,7 +983,7 @@ void outputDocBookInfo(
|
|||||||
}
|
}
|
||||||
|
|
||||||
// The abstract must go in <info>.
|
// The abstract must go in <info>.
|
||||||
bool needInfo = !info.mustBeInInfo.empty() || hasAbstract;
|
bool needInfo = !mustBeInInfo.empty() || hasAbstract;
|
||||||
|
|
||||||
// Start the <info> tag if required.
|
// Start the <info> tag if required.
|
||||||
if (needInfo) {
|
if (needInfo) {
|
||||||
@ -1017,10 +993,10 @@ void outputDocBookInfo(
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Output the elements that should go in <info>.
|
// Output the elements that should go in <info>.
|
||||||
generateDocBookParagraphWithoutSectioning(text, buf, xs, runparams, paragraphs, info.bpit, info.epit);
|
generateDocBookParagraphWithoutSectioning(text, buf, xs, runparams, paragraphs, bpitInfo, epitInfo);
|
||||||
|
|
||||||
if (hasAbstract && !abstract.empty()) { // The second test is probably superfluous.
|
if (hasAbstract && !abstract.empty()) { // The second test is probably superfluous.
|
||||||
string tag = paragraphs[*info.abstract.begin()].layout().docbookforceabstracttag();
|
string tag = paragraphs[bpitAbstract].layout().docbookforceabstracttag();
|
||||||
if (tag == "NONE")
|
if (tag == "NONE")
|
||||||
tag = "abstract";
|
tag = "abstract";
|
||||||
|
|
||||||
@ -1053,7 +1029,7 @@ void docbookFirstParagraphs(
|
|||||||
ParagraphList const ¶graphs = text.paragraphs();
|
ParagraphList const ¶graphs = text.paragraphs();
|
||||||
pit_type bpit = runparams.par_begin;
|
pit_type bpit = runparams.par_begin;
|
||||||
DocBookInfoTag info = getParagraphsWithInfo(paragraphs, bpit, epit);
|
DocBookInfoTag info = getParagraphsWithInfo(paragraphs, bpit, epit);
|
||||||
outputDocBookInfo(text, buf, xs, runparams, paragraphs, info);
|
outputDocBookInfo(text, buf, xs, runparams, paragraphs, info, get<3>(info), epit);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -1080,8 +1056,8 @@ void docbookSimpleAllParagraphs(
|
|||||||
pit_type bpit = runparams.par_begin;
|
pit_type bpit = runparams.par_begin;
|
||||||
pit_type const epit = runparams.par_end;
|
pit_type const epit = runparams.par_end;
|
||||||
DocBookInfoTag info = getParagraphsWithInfo(paragraphs, bpit, epit);
|
DocBookInfoTag info = getParagraphsWithInfo(paragraphs, bpit, epit);
|
||||||
outputDocBookInfo(text, buf, xs, runparams, paragraphs, info);
|
outputDocBookInfo(text, buf, xs, runparams, paragraphs, info, 0, 0);
|
||||||
bpit = info.bpit;
|
bpit = get<3>(info); // Generate the content starting from the end of the <info> part.
|
||||||
|
|
||||||
// Then, the content.
|
// Then, the content.
|
||||||
ParagraphList::const_iterator const pend =
|
ParagraphList::const_iterator const pend =
|
||||||
|
Loading…
Reference in New Issue
Block a user