[clang-tools-extra] r262605 - [docs] Fix docs to work with doxygen 1.8.11
Alexander Kornienko via cfe-commits
cfe-commits at lists.llvm.org
Thu Mar 3 02:45:59 PST 2016
Author: alexfh
Date: Thu Mar 3 04:45:59 2016
New Revision: 262605
URL: http://llvm.org/viewvc/llvm-project?rev=262605&view=rev
Log:
[docs] Fix docs to work with doxygen 1.8.11
Added:
clang-tools-extra/trunk/docs/doxygen-mainpage.dox
Removed:
clang-tools-extra/trunk/docs/doxygen.intro
Modified:
clang-tools-extra/trunk/docs/doxygen.cfg.in
Added: clang-tools-extra/trunk/docs/doxygen-mainpage.dox
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/docs/doxygen-mainpage.dox?rev=262605&view=auto
==============================================================================
--- clang-tools-extra/trunk/docs/doxygen-mainpage.dox (added)
+++ clang-tools-extra/trunk/docs/doxygen-mainpage.dox Thu Mar 3 04:45:59 2016
@@ -0,0 +1,9 @@
+/// \mainpage clang-tools
+///
+/// \section main_intro Introduction
+/// Welcome to clang tools.
+///
+/// This documentation describes the **internal** software that makes
+/// up clang tools, not the **external** use of clang tools. For
+/// usage instructions, please see the programmer's guide or reference
+/// manual.
Modified: clang-tools-extra/trunk/docs/doxygen.cfg.in
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/docs/doxygen.cfg.in?rev=262605&r1=262604&r2=262605&view=diff
==============================================================================
--- clang-tools-extra/trunk/docs/doxygen.cfg.in (original)
+++ clang-tools-extra/trunk/docs/doxygen.cfg.in Thu Mar 3 04:45:59 2016
@@ -751,7 +751,7 @@ INPUT = \
@abs_srcdir@/../modularize \
@abs_srcdir@/../pp-trace \
@abs_srcdir@/../tool-template \
- @abs_srcdir@/doxygen.intro
+ @abs_srcdir@/doxygen-mainpage.dox
# This tag can be used to specify the character encoding of the source files
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
@@ -1797,18 +1797,6 @@ GENERATE_XML = NO
XML_OUTPUT = xml
-# The XML_SCHEMA tag can be used to specify a XML schema, which can be used by a
-# validating XML parser to check the syntax of the XML files.
-# This tag requires that the tag GENERATE_XML is set to YES.
-
-XML_SCHEMA =
-
-# The XML_DTD tag can be used to specify a XML DTD, which can be used by a
-# validating XML parser to check the syntax of the XML files.
-# This tag requires that the tag GENERATE_XML is set to YES.
-
-XML_DTD =
-
# If the XML_PROGRAMLISTING tag is set to YES doxygen will dump the program
# listings (including syntax highlighting and cross-referencing information) to
# the XML output. Note that enabling this will significantly increase the size
Removed: clang-tools-extra/trunk/docs/doxygen.intro
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/docs/doxygen.intro?rev=262604&view=auto
==============================================================================
--- clang-tools-extra/trunk/docs/doxygen.intro (original)
+++ clang-tools-extra/trunk/docs/doxygen.intro (removed)
@@ -1,9 +0,0 @@
-/// @mainpage clang-tools
-///
-/// @section main_intro Introduction
-/// Welcome to clang tools.
-///
-/// This documentation describes the @b internal software that makes
-/// up clang tools, not the @b external use of clang tools. For
-/// usage instructions, please see the programmer's guide or reference
-/// manual.
More information about the cfe-commits
mailing list