[docmaker] Always handle `<Order>' section elements.
Previously, those elements were handled only for sections present in a `<Sections>' chapter element. * src/tools/docmaker/content.py (ContentProcessor::finish): Implement it.
This commit is contained in:
parent
ef6a352344
commit
ca1f5cc7e6
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
||||||
|
2014-12-02 Werner Lemberg <wl@gnu.org>
|
||||||
|
|
||||||
|
[docmaker] Always handle `<Order>' section elements.
|
||||||
|
|
||||||
|
Previously, those elements were handled only for sections present in
|
||||||
|
a `<Sections>' chapter element.
|
||||||
|
|
||||||
|
* src/tools/docmaker/content.py (ContentProcessor::finish):
|
||||||
|
Implement it.
|
||||||
|
|
||||||
2014-12-02 Werner Lemberg <wl@gnu.org>
|
2014-12-02 Werner Lemberg <wl@gnu.org>
|
||||||
|
|
||||||
[docmaker] Properly handle empty rows in Synopsis.
|
[docmaker] Properly handle empty rows in Synopsis.
|
||||||
|
|
|
@ -503,6 +503,7 @@ class ContentProcessor:
|
||||||
others = []
|
others = []
|
||||||
for sec in self.sections.values():
|
for sec in self.sections.values():
|
||||||
if not sec.chapter:
|
if not sec.chapter:
|
||||||
|
sec.reorder()
|
||||||
others.append( sec )
|
others.append( sec )
|
||||||
|
|
||||||
# create a new special chapter for all remaining sections
|
# create a new special chapter for all remaining sections
|
||||||
|
|
Loading…
Reference in New Issue