Skip to content

Commit

Permalink
The File System Standard PR (#1)
Browse files Browse the repository at this point in the history
* 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
annevk authored Feb 3, 2022
1 parent 840b322 commit f520f35
Show file tree
Hide file tree
Showing 19 changed files with 578 additions and 2,118 deletions.
19 changes: 19 additions & 0 deletions .editorconfig
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
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
* text=auto
*.bs diff=html linguist-language=HTML
26 changes: 26 additions & 0 deletions .github/workflows/build.yml
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 }}
16 changes: 0 additions & 16 deletions .github/workflows/pr-push.yml

This file was deleted.

4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/fs.spec.whatwg.org/
/deploy.sh
/index.html
/review.sh
12 changes: 7 additions & 5 deletions .pr-preview.json
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 }}"
}
}
3 changes: 0 additions & 3 deletions CODE_OF_CONDUCT.md

This file was deleted.

23 changes: 0 additions & 23 deletions CONTRIBUTING.md

This file was deleted.

Loading

0 comments on commit f520f35

Please sign in to comment.