Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[documentation] fix up path for Javascript support #225

Merged
merged 1 commit into from
Nov 24, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/deploy_doxygen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
- name: Doxygen
uses: mattnotmitt/doxygen-action@v1.9.4
with:
working-directory: '.'
doxyfile-path: 'documentation/Doxyfile'
working-directory: 'documentation'
doxyfile-path: 'Doxyfile'
- name: Deploy
uses: peaceiris/actions-gh-pages@v3.8.0
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/doxygen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ jobs:
- name: Doxygen
uses: mattnotmitt/doxygen-action@v1.9.4
with:
working-directory: '.'
doxyfile-path: 'documentation/Doxyfile'
working-directory: 'documentation'
doxyfile-path: 'Doxyfile'
30 changes: 13 additions & 17 deletions documentation/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ PROJECT_NAME = Kalman
PROJECT_NUMBER = 0.1.0
PROJECT_BRIEF = "Kalman Filter for C++"
PROJECT_LOGO =
OUTPUT_DIRECTORY = documentation
OUTPUT_DIRECTORY = .
CREATE_SUBDIRS = NO
CREATE_SUBDIRS_LEVEL = 8
ALLOW_UNICODE_NAMES = NO
Expand Down Expand Up @@ -124,7 +124,7 @@ WARN_LOGFILE =
#---------------------------------------------------------------------------
# Configuration options related to the input files
#---------------------------------------------------------------------------
INPUT =
INPUT = ..
INPUT_ENCODING = UTF-8
INPUT_FILE_ENCODING =
FILE_PATTERNS = *.c \
Expand Down Expand Up @@ -179,15 +179,15 @@ EXCLUDE =
EXCLUDE_SYMLINKS = NO
EXCLUDE_PATTERNS =
EXCLUDE_SYMBOLS = *::internal::*
EXAMPLE_PATH = sample
EXAMPLE_PATH = ../sample
EXAMPLE_PATTERNS = *
EXAMPLE_RECURSIVE = NO
IMAGE_PATH = ./
IMAGE_PATH = ../
INPUT_FILTER =
FILTER_PATTERNS =
FILTER_SOURCE_FILES = NO
FILTER_SOURCE_PATTERNS =
USE_MDFILE_AS_MAINPAGE = ./README.md
USE_MDFILE_AS_MAINPAGE = ../README.md
FORTRAN_COMMENT_AFTER = 72
#---------------------------------------------------------------------------
# Configuration options related to source browsing
Expand All @@ -201,10 +201,6 @@ REFERENCES_LINK_SOURCE = YES
SOURCE_TOOLTIPS = YES
USE_HTAGS = NO
VERBATIM_HEADERS = YES
CLANG_ASSISTED_PARSING = NO
CLANG_ADD_INC_PATHS = YES
CLANG_OPTIONS =
CLANG_DATABASE_PATH =
#---------------------------------------------------------------------------
# Configuration options related to the alphabetical class index
#---------------------------------------------------------------------------
Expand All @@ -216,16 +212,16 @@ IGNORE_PREFIX =
GENERATE_HTML = YES
HTML_OUTPUT = html
HTML_FILE_EXTENSION = .xhtml
HTML_HEADER = documentation/header.html
HTML_HEADER = header.html
HTML_FOOTER =
HTML_STYLESHEET =
HTML_EXTRA_STYLESHEET = documentation/doxygen-awesome.css \
documentation/doxygen-awesome-sidebar-only.css \
documentation/doxygen-awesome-sidebar-only-darkmode-toggle.css
HTML_EXTRA_FILES = documentation/doxygen-awesome-darkmode-toggle.js \
documentation/doxygen-awesome-interactive-toc.js \
documentation/doxygen-awesome-fragment-copy-button.js \
documentation/doxygen-awesome-paragraph-link.js
HTML_EXTRA_STYLESHEET = doxygen-awesome.css \
doxygen-awesome-sidebar-only.css \
doxygen-awesome-sidebar-only-darkmode-toggle.css
HTML_EXTRA_FILES = doxygen-awesome-darkmode-toggle.js \
doxygen-awesome-interactive-toc.js \
doxygen-awesome-fragment-copy-button.js \
doxygen-awesome-paragraph-link.js
HTML_COLORSTYLE = TOGGLE
HTML_COLORSTYLE_HUE = 120
HTML_COLORSTYLE_SAT = 90
Expand Down