diff --git a/ChangeLog b/ChangeLog index 875596d85c..c671564caa 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2000-11-17 James LewisMoss + + * src/doc/design/reports.texinfo (Reports): Reorder option + descriptions to match the order in the example function. + + * src/doc/design/Makefile.am (gnucash_design_TEXINFOS): Add info + files to clean list (why the hell aren't they already cleaned?) + 2000-11-09 Bill Gribble * src/engine/gnc_numeric.c: fix remainder-handling error diff --git a/src/doc/design/Makefile.am b/src/doc/design/Makefile.am index 1927338b70..e2dc393459 100644 --- a/src/doc/design/Makefile.am +++ b/src/doc/design/Makefile.am @@ -10,3 +10,5 @@ gnucash_design_TEXINFOS = concept-index.texinfo \ top-level.texinfo \ type-index.texinfo \ user-preferences.texinfo + +CLEANFILES = gnucash-design.info gnucash-design.info-[0-9]* diff --git a/src/doc/design/reports.texinfo b/src/doc/design/reports.texinfo index 46d9ec7f1e..4ac05b2553 100644 --- a/src/doc/design/reports.texinfo +++ b/src/doc/design/reports.texinfo @@ -43,6 +43,11 @@ This is the version number of the report, which is currently ignored. @item 'name This is self-explanatory. +@item 'options-generator +This should be a function that takes no arguments and returns an options +structure with the options for the report. The options interface is +currently not fully documented, but should be. + @item 'renderer This is a function that takes one argument - a set of options that use the options API. It returns a list, which either contains strings, or @@ -50,11 +55,6 @@ lists which only contain strings or lists of the same type. When flattened and concatenated these strings should form the HTML of the report. -@item 'options-generator -This should be a function that takes no arguments and returns an options -structure with the options for the report. The options interface is -currently not fully documented, but should be. - @end table To generate the HTML, you can write your own HTML generation code, or