2009-02-09 12:29:16 +01:00
|
|
|
---
|
|
|
|
Makefile.in | 2 --
|
|
|
|
configure | 1 +
|
|
|
|
2 files changed, 1 insertion(+), 2 deletions(-)
|
|
|
|
|
- updated to 1.8.3:
Changes
* Expanding the tree in an index page of the HTML output, will
now expand only one level instead of the whole sub-tree.
* A blockquote in Markdown does no longer require a whitespace
after the last '>' if the '>' is followed by a newline.
* id 682718: Included patch to add version info to all
generated template files (headers, footers, stylesheets,
layout files, etc).
New features
* Added support for using external tools to index and search
through the HTML documentation. An example index tool is
provided (doxyindexer) and an example search engine
(doxysearch.cgi). To configure the external search engine
the following new options are added to the configuration
file: EXTERNAL_SEARCH (to enable the feature),
SEARCHENGINE_URL (to specify the URL of the search engine),
SEARCHDATA_FILE (to specify the name of the raw search
data to index), EXTRA_SEARCH_MAPPINGS (for search through
multiple projects). See the manual for details.
* Added USE_MDFILE_AS_MAINPAGE config option to select a
markdown page to be used as the main page.
* id 630645: This patch (contributed by Albert) adds support
for simple logic expressions for \cond, \if, and friends,
i.e. you can do \if (SOME_SECTION_NAME &&
(!THIS_ALTERNATIVE || THAT_ALTERNATIVE))
* id 684152: Patch (contributed by Albert) adds a new
configuration option MATHJAX_FORMAT to select the MathJax
output format. Options are HTML-CSS, NativeMML, or SVG.
Bug Fixes
OBS-URL: https://build.opensuse.org/package/show/devel:tools/doxygen?expand=0&rev=58
2012-12-31 09:42:17 +01:00
|
|
|
Index: Makefile.in
|
|
|
|
===================================================================
|
2014-01-02 10:29:50 +01:00
|
|
|
--- Makefile.in.orig 2013-10-21 20:09:13.000000000 +0200
|
|
|
|
+++ Makefile.in 2014-01-02 10:06:25.115127423 +0100
|
|
|
|
@@ -78,8 +78,6 @@
|
2009-02-09 12:29:16 +01:00
|
|
|
|
|
|
|
DATE=$(shell date "+%B %Y")
|
|
|
|
|
2009-01-13 18:42:16 +01:00
|
|
|
-MAN1DIR = man/man1
|
|
|
|
-
|
- updated to 1.8.3:
Changes
* Expanding the tree in an index page of the HTML output, will
now expand only one level instead of the whole sub-tree.
* A blockquote in Markdown does no longer require a whitespace
after the last '>' if the '>' is followed by a newline.
* id 682718: Included patch to add version info to all
generated template files (headers, footers, stylesheets,
layout files, etc).
New features
* Added support for using external tools to index and search
through the HTML documentation. An example index tool is
provided (doxyindexer) and an example search engine
(doxysearch.cgi). To configure the external search engine
the following new options are added to the configuration
file: EXTERNAL_SEARCH (to enable the feature),
SEARCHENGINE_URL (to specify the URL of the search engine),
SEARCHDATA_FILE (to specify the name of the raw search
data to index), EXTRA_SEARCH_MAPPINGS (for search through
multiple projects). See the manual for details.
* Added USE_MDFILE_AS_MAINPAGE config option to select a
markdown page to be used as the main page.
* id 630645: This patch (contributed by Albert) adds support
for simple logic expressions for \cond, \if, and friends,
i.e. you can do \if (SOME_SECTION_NAME &&
(!THIS_ALTERNATIVE || THAT_ALTERNATIVE))
* id 684152: Patch (contributed by Albert) adds a new
configuration option MATHJAX_FORMAT to select the MathJax
output format. Options are HTML-CSS, NativeMML, or SVG.
Bug Fixes
OBS-URL: https://build.opensuse.org/package/show/devel:tools/doxygen?expand=0&rev=58
2012-12-31 09:42:17 +01:00
|
|
|
install: doxywizard_install doxysearch_install
|
2014-01-02 10:29:50 +01:00
|
|
|
$(INSTTOOL) -d $(DESTDIR)$(INSTALL)/bin
|
|
|
|
$(INSTTOOL) -m 755 bin/doxygen $(DESTDIR)$(INSTALL)/bin
|
- updated to 1.8.3:
Changes
* Expanding the tree in an index page of the HTML output, will
now expand only one level instead of the whole sub-tree.
* A blockquote in Markdown does no longer require a whitespace
after the last '>' if the '>' is followed by a newline.
* id 682718: Included patch to add version info to all
generated template files (headers, footers, stylesheets,
layout files, etc).
New features
* Added support for using external tools to index and search
through the HTML documentation. An example index tool is
provided (doxyindexer) and an example search engine
(doxysearch.cgi). To configure the external search engine
the following new options are added to the configuration
file: EXTERNAL_SEARCH (to enable the feature),
SEARCHENGINE_URL (to specify the URL of the search engine),
SEARCHDATA_FILE (to specify the name of the raw search
data to index), EXTRA_SEARCH_MAPPINGS (for search through
multiple projects). See the manual for details.
* Added USE_MDFILE_AS_MAINPAGE config option to select a
markdown page to be used as the main page.
* id 630645: This patch (contributed by Albert) adds support
for simple logic expressions for \cond, \if, and friends,
i.e. you can do \if (SOME_SECTION_NAME &&
(!THIS_ALTERNATIVE || THAT_ALTERNATIVE))
* id 684152: Patch (contributed by Albert) adds a new
configuration option MATHJAX_FORMAT to select the MathJax
output format. Options are HTML-CSS, NativeMML, or SVG.
Bug Fixes
OBS-URL: https://build.opensuse.org/package/show/devel:tools/doxygen?expand=0&rev=58
2012-12-31 09:42:17 +01:00
|
|
|
Index: configure
|
|
|
|
===================================================================
|
2014-01-02 10:29:50 +01:00
|
|
|
--- configure.orig 2013-12-24 17:14:46.000000000 +0100
|
|
|
|
+++ configure 2014-01-02 10:06:25.115127423 +0100
|
|
|
|
@@ -704,6 +704,7 @@
|
2009-02-09 12:29:16 +01:00
|
|
|
DOXYDOCS = ..
|
|
|
|
DOCDIR = $f_docdir
|
|
|
|
QTDIR = $QTDIR
|
2009-01-13 18:42:16 +01:00
|
|
|
+MAN1DIR = share/man/man1
|
2009-02-09 12:29:16 +01:00
|
|
|
EOF
|
|
|
|
|
|
|
|
if test "$f_dot" != NO; then
|