-
-
Notifications
You must be signed in to change notification settings - Fork 324
Rewrite the docs #1052
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
Draft
Archmonger
wants to merge
49
commits into
main
Choose a base branch
from
new-docs
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.
Draft
Rewrite the docs #1052
Changes from all commits
Commits
Show all changes
49 commits
Select commit
Hold shift + click to select a range
d0e3628
`Archmonger/reactpy-docs/main` to `reactive-python/reactpy/new-docs`
Archmonger 8602fff
add gh pages publishing workflow
Archmonger b05c29c
fix requirements path
Archmonger 3b5341a
update github pages link
Archmonger 2b5dd4d
update site description
Archmonger 8cc75aa
minor typos
Archmonger a05cbe0
setup for the tutorial section
Archmonger 2f5b68a
switch from abstract to note admonitiion
Archmonger 308d216
reword note
Archmonger 838671b
cell-var-from-loop
Archmonger 58bac05
update readme
Archmonger ad10c29
add padding to sidebar nav
Archmonger 73dadc9
Inspecting the starter code
Archmonger f28a6ab
Add disclaimer about unfinished pages
Archmonger 60d54e0
rename tic-tac-toe folder
Archmonger 0a347dd
add styling utils
Archmonger acf3f5c
build a static version in React
Archmonger e4be299
Find the minimal but complete representation of UI state
Archmonger 067279f
Identify where your state should live
Archmonger 3a0d107
Thinking in React
Archmonger 865c18f
Add fixme
Archmonger 6195050
start a new react project
Archmonger fa4b1df
Add in progress warnings
Archmonger 3c0b071
Add more in progress warnings
Archmonger ce60b29
a little bit of the "responding to events" section
Archmonger 656623a
remove start from the runnable examples
Archmonger 3c644cc
more in progress warnings
Archmonger fe45c54
add stub docs for hooks
Archmonger 3de3fd3
add use-id warning
Archmonger 3aab58b
Add undeveloped hooks
Archmonger 8f58f8c
mkdocs-section-index: Move titles to mkdocs.yml
Archmonger c2c0281
verbiage on installation docs
Archmonger aec77d4
add installation index page
Archmonger 7c68a47
editor setup
Archmonger 302f133
remove unneeded space
Archmonger 11aa58a
format everything
Archmonger ab653c5
Add extras section
Archmonger 64432b2
Cleanup blocked pages
Archmonger 260b5e5
change undeveloped warning text
Archmonger 1ffc0d9
add pyscript backend
Archmonger 106a128
add mike
Archmonger b505d03
sync styles to django
Archmonger c9964f6
Change you will learn" capitalization
Archmonger 5ed1300
Change note to abstract
Archmonger 0a36534
html can now return none
Archmonger 2bef10d
unbork large portions of the theme
Archmonger 169e33e
delete python src from this branch
Archmonger fb84879
ReactPy V2 changes
Archmonger 1e93576
fix a few pages
Archmonger File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
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,35 @@ | ||
# http://editorconfig.org | ||
|
||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
charset = utf-8 | ||
end_of_line = lf | ||
|
||
[*.py] | ||
indent_size = 4 | ||
max_line_length = 120 | ||
|
||
[*.md] | ||
indent_size = 4 | ||
|
||
[*.yml] | ||
indent_size = 4 | ||
|
||
[*.html] | ||
max_line_length = off | ||
|
||
[*.js] | ||
max_line_length = off | ||
|
||
[*.css] | ||
indent_size = 4 | ||
max_line_length = off | ||
|
||
# Tests can violate line width restrictions in the interest of clarity. | ||
[**/test_*.py] | ||
max_line_length = off |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,17 @@ | ||
name: Publish Docs | ||
on: | ||
push: | ||
branches: | ||
- new-docs | ||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.x | ||
- run: pip install -r docs/requirements.txt | ||
- run: cd docs && mkdocs gh-deploy --force |
This file was deleted.
Oops, something went wrong.
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
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,27 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
<!--attr-start--> | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
<!--attr-end--> | ||
|
||
<!-- | ||
Using the following categories, list your changes in this order: | ||
- "Added" for new features. | ||
- "Changed" for changes in existing functionality. | ||
- "Deprecated" for soon-to-be removed features. | ||
- "Removed" for now removed features. | ||
- "Fixed" for any bug fixes. | ||
- "Security" in case of vulnerabilities. | ||
--> | ||
|
||
<!--changelog-start--> | ||
|
||
## [Unreleased] | ||
|
||
- Nothing (yet) | ||
|
||
[unreleased]: https://github.com/reactive-python/reactpy/compare/1.0.0...HEAD |
This file was deleted.
Oops, something went wrong.
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,9 @@ | ||
## The MIT License (MIT) | ||
|
||
#### Copyright (c) Reactive Python and affiliates. | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
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.
Uh oh!
There was an error while loading. Please reload this page.