This repository was archived by the owner on Apr 23, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
#78 : Research all the extensions related to Boost Library documentat… #83
Open
whisper67265
wants to merge
1
commit into
CppDigest:main
Choose a base branch
from
whisper67265:dev-02
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| GITHUB_TOKEN=<github_token here...> | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,71 @@ | ||
| All extensions (from boost-1.90.0_libraries_list.txt) | ||
| Extension -> # libraries that have at least one file with that extension: | ||
|
|
||
| .v2: 92 | ||
| .qbk: 88 | ||
| .html: 81 | ||
| .png: 55 | ||
| .css: 31 | ||
| .adoc: 29 | ||
| .xml: 27 | ||
| .txt: 23 | ||
| .cpp: 18 | ||
| .sh: 18 | ||
| .svg: 18 | ||
| .gif: 17 | ||
| .idx: 16 | ||
| .rst: 12 | ||
| .hpp: 11 | ||
| .pdf: 11 | ||
| .md: 11 | ||
| .json: 11 | ||
| .jam: 9 | ||
| .manifest: 9 | ||
| .jpg: 9 | ||
| .py: 8 | ||
| .yml: 8 | ||
| .xsl: 7 | ||
| .js: 6 | ||
| .htm: 6 | ||
| .dox: 5 | ||
| .dia: 4 | ||
| .bat: 3 | ||
| .mml: 2 | ||
| .tex: 2 | ||
| .c: 2 | ||
| .dot: 2 | ||
| .graffle: 2 | ||
| .pl: 2 | ||
| .sty: 2 | ||
| .ttf: 2 | ||
| .ico: 2 | ||
| .jpeg: 1 | ||
| .mak: 1 | ||
| .reno: 1 | ||
| .pptx: 1 | ||
| .xlsx: 1 | ||
| .output: 1 | ||
| .csh: 1 | ||
| .fig: 1 | ||
| .w: 1 | ||
| .toc: 1 | ||
| .hdf: 1 | ||
| .tcl: 1 | ||
| .ent: 1 | ||
| .odp: 1 | ||
| .layout: 1 | ||
| .schematic: 1 | ||
| .h: 1 | ||
| .mac: 1 | ||
| .log: 1 | ||
| .in: 1 | ||
| .vpp: 1 | ||
| .toml: 1 | ||
| .dat: 1 | ||
| .jinja2: 1 | ||
| .rb: 1 | ||
| .mjs: 1 | ||
| .odg: 1 | ||
|
|
||
| Total unique extensions: 65 | ||
| Total (library, extension) pairs: 688 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| Documentation extensions only (from boost-1.90.0_libraries_list.txt) | ||
| Extension -> # libraries that have at least one file with that extension: | ||
|
|
||
| .qbk: 88 | ||
| .html: 81 | ||
| .adoc: 29 | ||
| .xml: 27 | ||
| .txt: 23 | ||
| .rst: 12 | ||
| .md: 11 | ||
| .xsl: 7 | ||
| .htm: 6 | ||
| .dox: 5 | ||
| .tex: 2 | ||
| .reno: 1 | ||
| .ent: 1 | ||
|
|
||
| Total unique extensions: 13 | ||
| Total (library, extension) pairs: 293 |
Large diffs are not rendered by default.
Oops, something went wrong.
157 changes: 157 additions & 0 deletions
157
BoostLibraryList/boost-1.90.0_libraries_list_submodules.txt
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
.envmust not be committed to version control.Even as a placeholder, tracking
.envin git is dangerous: a developer may replace the placeholder with a real token and commit it, exposing it in history permanently. The standard convention is to commit a.env.example(or.env.template) containing only the key names with placeholder values, and add.envto.gitignore.🔒 Recommended remediation
.envto.gitignore:+BoostLibraryList/.env.env.examplefor documentation:+GITHUB_TOKEN="<your_github_token_here>".envfrom tracking:Also note the
[ValueWithoutQuotes]lint warning fromdotenv-linter: the value contains spaces and special characters (<,>,...) and should be wrapped in double quotes per the dotenv spec.🧰 Tools
🪛 dotenv-linter (4.0.0)
[warning] 1-1: [EndingBlankLine] No blank line at the end of the file
(EndingBlankLine)
[warning] 1-1: [ValueWithoutQuotes] This value needs to be surrounded in quotes
(ValueWithoutQuotes)
🤖 Prompt for AI Agents