diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | docs/reference/Doxyfile.in | 3 | ||||
-rw-r--r-- | tools/pm/DocsParser.pm | 4 |
3 files changed, 14 insertions, 0 deletions
@@ -1,3 +1,10 @@ +2007-07-02 Murray Cumming <murrayc@murrayc.com> + + * tools/pm/DocsParser.pm: convert_tags_to_doxygen(): + Handle newin markers for 2.12 and a few after that. + * docs/reference/Doxyfile.in: Added ALIASES for newin2p12 and + a few more. + 2.13.7: 2007-06-22 Murray Cumming <murrayc@murrayc.com> diff --git a/docs/reference/Doxyfile.in b/docs/reference/Doxyfile.in index a153812b..1b78c405 100644 --- a/docs/reference/Doxyfile.in +++ b/docs/reference/Doxyfile.in @@ -152,6 +152,9 @@ ALIASES += "newin2p4=\xrefitem newin2p4s \"Since glibmm 2.4\" \"N ALIASES += "newin2p6=\xrefitem newin2p6s \"Since glibmm 2.6\" \"New API since glibmm 2.6\"" ALIASES += "newin2p8=\xrefitem newin2p8s \"Since glibmm 2.8\" \"New API since glibmm 2.8\"" ALIASES += "newin2p10=\xrefitem newin2p10s \"Since glibmm 2.10\" \"New API since glibmm 2.10\"" +ALIASES += "newin2p12=\xrefitem newin2p12s \"Since glibmm 2.12\" \"New API since glibmm 2.12\"" +ALIASES += "newin2p14=\xrefitem newin2p14s \"Since glibmm 2.14\" \"New API since glibmm 2.14\"" +ALIASES += "newin2p16=\xrefitem newin2p16s \"Since glibmm 2.16\" \"New API since glibmm 2.16\"" # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources # only. Doxygen will then generate output that is more tailored for C. diff --git a/tools/pm/DocsParser.pm b/tools/pm/DocsParser.pm index 62ff6e71..5b2abef8 100644 --- a/tools/pm/DocsParser.pm +++ b/tools/pm/DocsParser.pm @@ -371,6 +371,10 @@ sub convert_tags_to_doxygen($) s"Since: 2\.6"\@newin2p6"mg; s"Since: 2\.8"\@newin2p8"mg; s"Since: 2\.10"\@newin2p10"mg; + s"Since: 2\.12"\@newin2p12"mg; + s"Since: 2\.14"\@newin2p14"mg; + s"Since: 2\.16"\@newin2p16"mg; + s"Since: 2\.18"\@newin2p18"mg; s"\b->\b"->"g; |