mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-20 11:05:54 +00:00
chore: Fix documentation generation job: (#5091)
* Add "doxygen" to list of supported branches to allow for testing and development. * Add titles / H1 to some .md files that don't have them.
This commit is contained in:
1
.github/workflows/doxygen.yml
vendored
1
.github/workflows/doxygen.yml
vendored
@@ -4,6 +4,7 @@ on:
|
|||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- develop
|
- develop
|
||||||
|
- doxygen
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
# Continuous Integration (CI) Scripts
|
||||||
|
|
||||||
In this directory are two scripts, `build.sh` and `test.sh` used for building
|
In this directory are two scripts, `build.sh` and `test.sh` used for building
|
||||||
and testing rippled.
|
and testing rippled.
|
||||||
|
|
||||||
|
|||||||
@@ -21,15 +21,17 @@ set(doxyfile "${CMAKE_CURRENT_SOURCE_DIR}/docs/Doxyfile")
|
|||||||
|
|
||||||
file(GLOB_RECURSE doxygen_input
|
file(GLOB_RECURSE doxygen_input
|
||||||
docs/*.md
|
docs/*.md
|
||||||
src/ripple/*.h
|
include/*.h
|
||||||
src/ripple/*.cpp
|
include/*.cpp
|
||||||
src/ripple/*.md
|
include/*.md
|
||||||
src/test/*.h
|
src/*.h
|
||||||
src/test/*.md)
|
src/*.cpp
|
||||||
|
src/*.md
|
||||||
|
Builds/*.md
|
||||||
|
*.md)
|
||||||
list(APPEND doxygen_input
|
list(APPEND doxygen_input
|
||||||
README.md
|
external/README.md
|
||||||
RELEASENOTES.md
|
)
|
||||||
src/README.md)
|
|
||||||
set(dependencies "${doxygen_input}" "${doxyfile}")
|
set(dependencies "${doxygen_input}" "${doxyfile}")
|
||||||
|
|
||||||
function(verbose_find_path variable name)
|
function(verbose_find_path variable name)
|
||||||
|
|||||||
@@ -103,18 +103,17 @@ WARN_LOGFILE =
|
|||||||
# Configuration options related to the input files
|
# Configuration options related to the input files
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
INPUT = \
|
INPUT = \
|
||||||
docs \
|
. \
|
||||||
src/ripple \
|
|
||||||
src/test \
|
|
||||||
src/README.md \
|
|
||||||
README.md \
|
|
||||||
RELEASENOTES.md \
|
|
||||||
|
|
||||||
|
|
||||||
INPUT_ENCODING = UTF-8
|
INPUT_ENCODING = UTF-8
|
||||||
FILE_PATTERNS = *.h *.cpp *.md
|
FILE_PATTERNS = *.h *.cpp *.md
|
||||||
RECURSIVE = YES
|
RECURSIVE = YES
|
||||||
EXCLUDE =
|
EXCLUDE = \
|
||||||
|
.github \
|
||||||
|
external/ed25519-donna \
|
||||||
|
external/secp256k1 \
|
||||||
|
|
||||||
EXCLUDE_SYMLINKS = NO
|
EXCLUDE_SYMLINKS = NO
|
||||||
EXCLUDE_PATTERNS =
|
EXCLUDE_PATTERNS =
|
||||||
EXCLUDE_SYMBOLS =
|
EXCLUDE_SYMBOLS =
|
||||||
@@ -130,7 +129,7 @@ INPUT_FILTER =
|
|||||||
FILTER_PATTERNS =
|
FILTER_PATTERNS =
|
||||||
FILTER_SOURCE_FILES = NO
|
FILTER_SOURCE_FILES = NO
|
||||||
FILTER_SOURCE_PATTERNS =
|
FILTER_SOURCE_PATTERNS =
|
||||||
USE_MDFILE_AS_MAINPAGE = src/README.md
|
USE_MDFILE_AS_MAINPAGE = ./README.md
|
||||||
|
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
# Configuration options related to source browsing
|
# Configuration options related to source browsing
|
||||||
|
|||||||
2
external/README.md
vendored
2
external/README.md
vendored
@@ -1,3 +1,5 @@
|
|||||||
|
# External Conan recipes
|
||||||
|
|
||||||
The subdirectories in this directory contain either copies or Conan recipes
|
The subdirectories in this directory contain either copies or Conan recipes
|
||||||
of external libraries used by rippled.
|
of external libraries used by rippled.
|
||||||
The Conan recipes include patches we have not yet pushed upstream.
|
The Conan recipes include patches we have not yet pushed upstream.
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
# Protocol buffer definitions for gRPC
|
||||||
|
|
||||||
This folder contains the protocol buffer definitions used by the rippled gRPC API.
|
This folder contains the protocol buffer definitions used by the rippled gRPC API.
|
||||||
The gRPC API attempts to mimic the JSON/Websocket API as much as possible.
|
The gRPC API attempts to mimic the JSON/Websocket API as much as possible.
|
||||||
As of April 2020, the gRPC API supports a subset of the full rippled API:
|
As of April 2020, the gRPC API supports a subset of the full rippled API:
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
# Reporting mode
|
||||||
|
|
||||||
Reporting mode is a special operating mode of rippled, designed to handle RPCs
|
Reporting mode is a special operating mode of rippled, designed to handle RPCs
|
||||||
for validated data. A server running in reporting mode does not connect to the
|
for validated data. A server running in reporting mode does not connect to the
|
||||||
p2p network, but rather extracts validated data from a node that is connected
|
p2p network, but rather extracts validated data from a node that is connected
|
||||||
|
|||||||
Reference in New Issue
Block a user