-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Meta: add support files for being a Living Standard See whatwg/sg#176 for context. * Meta: align README See whatwg/sg#176 for context. * Introducing the File System Standard This change: * Aligns the draft with the WHATWG boilerplate. * Removes local file system access and the sections related to that. * Aligns the introduction with that change in scope. * Changes instances of and/or to or. * Abstracts the permission model, largely to be used by dependent specifications. See whatwg/sg#176 for context.
- Loading branch information
Showing
19 changed files
with
578 additions
and
2,118 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
root = true | ||
|
||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
charset = utf-8 | ||
indent_size = 2 | ||
indent_style = space | ||
trim_trailing_whitespace = true | ||
max_line_length = 100 | ||
|
||
[Makefile] | ||
indent_style = tab | ||
|
||
[*.bs] | ||
indent_size = 1 | ||
|
||
[*.py] | ||
indent_size = 4 |
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,2 @@ | ||
* text=auto | ||
*.bs diff=html linguist-language=HTML |
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,26 @@ | ||
name: Build | ||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
push: | ||
branches: | ||
- main | ||
jobs: | ||
build: | ||
name: Build | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 2 | ||
# Note: `python` will also be this version, which various scripts depend on. | ||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.8 | ||
# Note: `make deploy` will do a deploy dry run on PRs. | ||
- run: make deploy | ||
env: | ||
SERVER: ${{ secrets.MARQUEE_SERVER }} | ||
SERVER_PUBLIC_KEY: ${{ secrets.MARQUEE_PUBLIC_KEY }} | ||
SERVER_DEPLOY_KEY: ${{ secrets.MARQUEE_DEPLOY_KEY }} |
This file was deleted.
Oops, something went wrong.
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,4 @@ | ||
/fs.spec.whatwg.org/ | ||
/deploy.sh | ||
/index.html | ||
/review.sh |
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 |
---|---|---|
@@ -1,7 +1,9 @@ | ||
{ | ||
"src_file": "index.bs", | ||
"type": "bikeshed", | ||
"params": { | ||
"force": 1 | ||
} | ||
"src_file": "index.bs", | ||
"type": "bikeshed", | ||
"params": { | ||
"force": 1, | ||
"md-status": "LS-PR", | ||
"md-Text-Macro": "PR-NUMBER {{ pull_request.number }}" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.