-
Notifications
You must be signed in to change notification settings - Fork 1.3k
docs(build): unified output subtree under docs/build/ #4081
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
base: master
Are you sure you want to change the base?
Changes from all commits
932cf1b
c29adc8
da91abf
0e7ff74
68be4f6
a00746b
01a5a6b
14a7e37
e21878d
4caa75c
a63075b
4e3a947
38572cb
569b2b7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,54 @@ | ||
| # generated when building pdf docs | ||
| index.html | ||
| # All ignores for the documentation tree live here (not in the top-level | ||
| # .gitignore). Paths are relative to docs/. | ||
|
|
||
| # Rendered output: HTML, PDF, and po4a-translated .adoc all land under build/. | ||
| /build/ | ||
|
|
||
| # Intermediate .html asciidoctor writes beside each source .adoc before the | ||
| # copy step moves it into build/html/. | ||
| /src/*/*.html | ||
|
|
||
| # source-highlight local cache. | ||
| /src/source-highlight/local | ||
|
|
||
|
Comment on lines
+11
to
+13
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Source-highlight was removed and you are using rouge. All the source-highlight stuff is obsolete. |
||
| # Generated component manpage list (gen_complist.py). | ||
| /src/hal/components_gen.adoc | ||
|
|
||
|
Comment on lines
+14
to
+16
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Wouldn't it be better to run po4a on the |
||
| # SVGs rendered from the .dot sources in src/code/ (CMS_buffer.svg is committed). | ||
| /src/code/homing.svg | ||
| /src/code/homing_es.svg | ||
| /src/code/hss.svg | ||
| /src/code/hss_es.svg | ||
| /src/code/task-state-transitions.svg | ||
| /src/code/task-state-transitions_es.svg | ||
|
|
||
|
Comment on lines
+18
to
+24
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These should be generated into the build tree. We should keep the docs/src tree clean from anything generated for as much as possible. |
||
| # Troff manpages generated from .adoc by the asciidoctor manpage backend. | ||
| /man/man1/ | ||
| /man/man3/ | ||
| /man/man9/ | ||
|
Comment on lines
+25
to
+28
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Aren't they be generated into the right place now? |
||
|
|
||
| # po4a-translated man trees. | ||
| /man/ar/* | ||
| /man/bg/* | ||
| /man/ckb/* | ||
| /man/cs/* | ||
| /man/da/* | ||
| /man/de/* | ||
| /man/es/* | ||
| /man/fr/* | ||
| /man/hu/* | ||
| /man/it/* | ||
| /man/ka/* | ||
| /man/nb/* | ||
| /man/pl/* | ||
| /man/pt/* | ||
| /man/pt_BR/* | ||
| /man/ro/* | ||
| /man/ru/* | ||
| /man/sai/* | ||
| /man/sk/* | ||
| /man/sv/* | ||
| /man/tr/* | ||
| /man/uk/* | ||
| /man/vi/* | ||
| /man/zh_CN/* | ||
|
Comment on lines
+30
to
+54
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This should now all be under build. |
||
This file was deleted.
This file was deleted.
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.
Why have these a leading
/? Using relative paths is a thing ;-)(other places too)