Skip to content

Commit adc81ca

Browse files
authored
Merge pull request #2 from whatwg/master
Merging upstream changes...
2 parents 5b7dae0 + 6a644c6 commit adc81ca

File tree

7 files changed

+15805
-1218
lines changed

7 files changed

+15805
-1218
lines changed

.gitignore

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/fetch.spec.whatwg.org/
2-
deploy_key
3-
deploy_key.pub
4-
deploy.sh
5-
fetch.html
2+
/deploy_key
3+
/deploy_key.pub
4+
/deploy.sh
5+
/fetch.html
6+
/review.sh

.travis.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,14 @@ language: generic
33
env:
44
global:
55
- ENCRYPTION_LABEL="e149beb9c312"
6+
67
script:
7-
- curl --remote-name --fail https://resources.whatwg.org/build/deploy.sh && bash ./deploy.sh
8+
- make deploy
9+
810
branches:
911
only:
1012
- master
13+
1114
notifications:
1215
email:
1316
on_success: never

Makefile

+9-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
1-
local: fetch.bs
2-
bikeshed spec fetch.bs fetch.html --md-Text-Macro="SNAPSHOT-LINK LOCAL COPY"
3-
41
remote: fetch.bs
52
curl https://api.csswg.org/bikeshed/ -f -F [email protected] > fetch.html -F md-Text-Macro="SNAPSHOT-LINK LOCAL COPY"
63

4+
local: fetch.bs
5+
bikeshed spec fetch.bs fetch.html --md-Text-Macro="SNAPSHOT-LINK LOCAL COPY"
6+
77
deploy: fetch.bs
8-
curl --remote-name --fail https://resources.whatwg.org/build/deploy.sh && bash ./deploy.sh
8+
curl --remote-name --fail https://resources.whatwg.org/build/deploy.sh
9+
bash ./deploy.sh
10+
11+
review: fetch.bs
12+
curl --remote-name --fail https://resources.whatwg.org/build/review.sh
13+
bash ./review.sh

README.md

+13-14
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
This repository hosts the [Fetch Standard](https://fetch.spec.whatwg.org/).
22

3-
### Code of conduct
3+
## Code of conduct
44

5-
We are committed to providing a friendly, safe and welcoming environment for all. Please read and
5+
We are committed to providing a friendly, safe, and welcoming environment for all. Please read and
66
respect the [WHATWG Code of Conduct](https://whatwg.org/code-of-conduct).
77

8-
### Contribution opportunities
8+
## Contribution opportunities
99

1010
Folks notice minor and larger issues with the Fetch Standard all the time and we'd love your help
1111
fixing those. Pull requests for typographical and grammar errors are also most welcome.
1212

1313
We'd be happy to mentor you through this process. If you're interested and need help getting
14-
started, leave a comment on the issue or ask around [on IRC](https://wiki.whatwg.org/wiki/IRC).
14+
started, leave a comment on the issue or ask around [on IRC](https://whatwg.org/irc).
1515

16-
### Pull requests
16+
## Pull requests
1717

1818
In short, change `fetch.bs` and submit your patch, with a
1919
[good commit message](https://github.com/whatwg/meta/blob/master/COMMITTING.md). Consider
@@ -22,14 +22,13 @@ reading through the [WHATWG FAQ](https://whatwg.org/faq) if you are new here.
2222
Please add your name to the Acknowledgments section in your first pull request, even for trivial
2323
fixes. The names are sorted lexicographically.
2424

25-
If you want to preview the spec locally, you can either use a locally installed copy of
26-
[Bikeshed](https://github.com/tabatkins/bikeshed) by running `make` or use the HTTP API version by
27-
running `make remote`.
25+
## Building "locally"
2826

29-
If you want to do a complete "local deploy" including commit and/or branch snapshots, run
30-
`make deploy`.
27+
For quick local iteration, run `make`. To verify your changes locally, run `make deploy`. See more
28+
in the
29+
[WHATWG Contributor Guidelines](https://github.com/whatwg/meta/blob/master/CONTRIBUTING.md#building).
3130

32-
#### Formatting
31+
## Formatting
3332

3433
Use a column width of 100 characters.
3534

@@ -81,12 +80,12 @@ is.
8180
End tags must be omitted when possible and attribute values must not be quoted (if necessary, use
8281
double quotes).
8382

84-
### Merge policy
83+
## Merge policy
8584

8685
If you can commit to this repository, see the
8786
[maintainer guidelines](https://github.com/whatwg/meta/blob/master/MAINTAINERS.md).
8887

89-
### Tests
88+
## Tests
9089

9190
Tests can be found in the `fetch/` directory of
92-
[web-platform-tests](https://github.com/w3c/web-platform-tests).
91+
[web-platform-tests/wpt](https://github.com/web-platform-tests/wpt).

0 commit comments

Comments
 (0)