This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Removed page summaries from the top of installation and contributing doc pages #10711
Merged
Merged
Changes from 2 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
33c3e6b
Removed page summaries, fixed some links, fixed ToC being overlapped
39edd70
Added changelog
acf7a63
Altered changelog as suggested in code review
2ef5150
Applied suggestions from code review
f2c03ef
Update 10711.doc with suggestion from code review
Azrenbeth 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 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
This file contains 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 @@ | ||
Removed page summaries from top of installation and contributing pages. | ||
Azrenbeth marked this conversation as resolved.
Show resolved
Hide resolved
|
This file contains 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
This file contains 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
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.
Aha, we have a fun mismatch here where either the links work on the documentation website, or they work on github, but not both.
This is due to us importing this document, rather than it actually living in the
docs/
folder.A simple fix for this is just to link directly to the documentation website here for now. Otherwise we should probably just move this document to
docs/development/contributing_guide.md
and just put a link to that file inCONTRIBUTING.md
instead.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.
Oh I didn't think about it breaking it when looking on github...
Why is
CONTRIBUTING.md
inside of the development folder (and similarly why must it also NOT be in the development folder)?There seems to be other files that are under the development subsection on the contents page but are just in
docs/
(e.g.log_contexts.md
) is there a reason we can't just do that with CONTRIBUTING?(or all the files like log_contexts.md in the wrong place atm)
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.
Github sees the file at CONTRIBUTING.md and points to it in various places around the codebase (such as when submitting a PR for the first time). Additionally, it's probably been linked in several places. As such it's a good place for it.
But we could easily just put a file there which contains a link to a file in
docs/
, like we did with INSTALL.md.We should probably do all this in a separate PR though.
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.
Ah yes, this was to prevent breaking links to these files that existed before the docs website. It would be nice to move them at some point, I agree, as it does cause confusion.
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.
Ahh ok, so for now I'll remove all of those changes then open a seperate PR to do something like was done for INSTALL.md
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.
Sounds good, yep!