From ee2fb61fdd44d5ac8ed185945e9a848c48af9222 Mon Sep 17 00:00:00 2001 From: Kris Date: Mon, 21 Mar 2022 15:42:46 +0100 Subject: [PATCH] Fixed: Changed Cappuccino.doxygen EXCLUDE_PATTERNS to exclude nothing. (#2680) Classes such as CPArray are no longer shown in the generated documentation This should fix #1956 --- Tools/Documentation/Cappuccino.doxygen | 2 +- Tools/Documentation/preprocess/002.make_headers.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Tools/Documentation/Cappuccino.doxygen b/Tools/Documentation/Cappuccino.doxygen index aa72ea5b2..ff81b42d7 100644 --- a/Tools/Documentation/Cappuccino.doxygen +++ b/Tools/Documentation/Cappuccino.doxygen @@ -847,7 +847,7 @@ EXCLUDE_SYMLINKS = NO # Note that the wildcards are matched against the file with absolute path, so to # exclude all test directories for example use the pattern */test/* -EXCLUDE_PATTERNS = _* +EXCLUDE_PATTERNS = # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # (namespaces, classes, functions, etc.) that should be excluded from the diff --git a/Tools/Documentation/preprocess/002.make_headers.sh b/Tools/Documentation/preprocess/002.make_headers.sh index ea914e3d4..b5cd0df57 100755 --- a/Tools/Documentation/preprocess/002.make_headers.sh +++ b/Tools/Documentation/preprocess/002.make_headers.sh @@ -19,12 +19,12 @@ fi # "AppKit" with "AppKit.doc" in the files path within the archive. Then unarchive the result. # This turns out to be the quickest way I could find to get the correct files and rename them. processor_msg "Collecting source files..." -bsdtar cf AppKit.doc.tar --exclude='_*' -s /^AppKit/AppKit.doc/ AppKit/*.j AppKit/**/*.j +bsdtar cf AppKit.doc.tar -s /^AppKit/AppKit.doc/ AppKit/*.j AppKit/**/*.j bsdtar xf AppKit.doc.tar rm AppKit.doc.tar # Now do the same thing with Foundation files. -bsdtar cf Foundation.doc.tar --exclude='_*' -s /^Foundation/Foundation.doc/ Foundation/*.j Foundation/**/*.j +bsdtar cf Foundation.doc.tar -s /^Foundation/Foundation.doc/ Foundation/*.j Foundation/**/*.j bsdtar xf Foundation.doc.tar rm Foundation.doc.tar