-
Notifications
You must be signed in to change notification settings - Fork 1.8k
[DOCS]: consolidate doc site content simplify navbar #5962
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
Changes from all commits
94457bf
75d7d9e
3dba7ac
fbc699c
bb98e7b
6f6b729
c187863
898f850
3ac0f52
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 |
|---|---|---|
|
|
@@ -37,10 +37,9 @@ community. | |
| :maxdepth: 1 | ||
| :caption: Links | ||
|
|
||
| Issue tracker <https://github.com/apache/arrow-datafusion/issues> | ||
| Github and Issue Tracker <https://github.com/apache/arrow-datafusion> | ||
| crates.io <https://crates.io/crates/datafusion> | ||
| API Docs <https://docs.rs/datafusion/21.1.0/datafusion/> | ||
| Github <https://github.com/apache/arrow-datafusion> | ||
| API Docs <https://docs.rs/datafusion/latest/datafusion/> | ||
| Code of conduct <https://github.com/apache/arrow-datafusion/blob/main/CODE_OF_CONDUCT.md> | ||
|
|
||
| .. _toc.guide: | ||
|
|
@@ -50,22 +49,17 @@ community. | |
|
|
||
| user-guide/introduction | ||
| user-guide/example-usage | ||
| user-guide/users | ||
|
Contributor
Author
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. I consolidated the content of these pages into other pages |
||
| user-guide/comparison | ||
| user-guide/integration | ||
| user-guide/library | ||
| user-guide/cli | ||
| user-guide/dataframe | ||
| user-guide/expressions | ||
| user-guide/sql/index | ||
| user-guide/configs | ||
| user-guide/faq | ||
| Rust Crate Documentation <https://docs.rs/crate/datafusion/> | ||
|
Contributor
Author
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 was redundant with the crates.io link above |
||
|
|
||
| .. _toc.contributor-guide: | ||
|
|
||
| .. toctree:: | ||
| :maxdepth: 2 | ||
|
Contributor
Author
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 stops listing H2 headings ( |
||
| :maxdepth: 1 | ||
| :caption: Contributor Guide | ||
|
|
||
| contributor-guide/index | ||
|
|
||
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.
What do you think about hosting the latest document generated from the source code on github pages (or other static page hoster)? Like greptimedb.rs which is generated from https://github.com/GreptimeTeam/greptimedb/deployments/activity_log?environment=github-pages
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.
I think it is a great idea -- thank you @waynexia
I actually think if we could build those API docs as part of the https://github.com/apache/arrow-datafusion/blob/main/docs build, they would "automatically" get hosted on https://arrow.apache.org/datafusion/
https://arrow.apache.org/datafusion/ is published via some ASF mechanism that is similar to github pages
Specifically, this workflow
https://github.com/apache/arrow-datafusion/blob/388f9ec3e7f7c09dac56ee0fe074ca97a6af9d44/.github/workflows/docs.yaml#L12-L64
pushes to the https://github.com/apache/arrow-datafusion/tree/asf-site branch which then gets hosted via this magic yaml:
https://github.com/apache/arrow-datafusion/blob/388f9ec3e7f7c09dac56ee0fe074ca97a6af9d44/.asf.yaml#L48-L52
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.
Filed #5981