forked from minhngoc25a/freetype2
[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>
|
||||
|
||||
[docmaker] Properly handle empty rows in Synopsis.
|
||||
|
|
|
@ -503,6 +503,7 @@ class ContentProcessor:
|
|||
others = []
|
||||
for sec in self.sections.values():
|
||||
if not sec.chapter:
|
||||
sec.reorder()
|
||||
others.append( sec )
|
||||
|
||||
# create a new special chapter for all remaining sections
|
||||
|
|
Loading…
Reference in New Issue