This is the repository for the W3C WebAuthn Working Group, producing the draft "Web Authentication" specification.
- The editor's copy is available at https://w3c.github.io/webauthn/, or in the
gh-pages
branch of this repository.- The current offically-published working-draft snapshot is here: https://www.w3.org/TR/webauthn/.
- The build history is available at Travis-CI.org
- W3C WebAuthn Blog
- Web platform tests repository
To materially contribute to this specification, you must meet the requiements outlined in CONTRIBUTING.md. Also, before submitting feedback, please familiarize yourself with our current issues list and review the mailing list discussion.
Formatted HTML for the draft can be built using bikeshed
(see below for instructions for bikeshed
installation):
$ bikeshed spec
You may also want to use the watch
functionality to automatically regenerate as you make changes:
$ bikeshed watch
You will need to have the Python tools pygments
and bikeshed
to build the draft. Pygments can be obtained via pip
, but Bikeshed will need to be downloaded with git
:
git clone --depth=1 --branch=master https://github.com/tabatkins/bikeshed.git ./bikeshed
pip install pygments
pip install --editable ./bikeshed
cp -R .spec-data/* ./bikeshed/bikeshed/spec-data
This repository uses .deploy-output.sh
to generate the Editor's Draft on the gh-pages
branch upon every merge to master
. In order to prevent failed merges during continuous integration, the formatted Editor's Draft should not be checked in to master
, and it is in the .gitignore
file.
To build a new WD and upload it to the W3C publishing system:
- Make sure Bikeshed is installed locally
- Edit the Bikeshed metadata to change the status from ED to WD (do not commit this change)
- Build and upload the new draft with
bikeshed echidna --u USERNAME --p PASSWORD --d DECISION_URL
This will create a tarball of the HTML and images, and upload to Echidna. Status of the request can be tracked through the W3C API as described in the Echidna documentation. Note that on Windows, this will give an error about failing to delete a temporary file because it is in use by a different process. This error is harmless; it happens after the submission has completed.
Overall info on echidna is here: https://github.com/w3c/echidna/wiki and here https://labs.w3.org/echidna/.