Skip to content
This repository was archived by the owner on Aug 17, 2022. It is now read-only.

Commit ad2abd7

Browse files
authored
Merge pull request #49 from WebAssembly/revert-to-core
Revert component-model changes back to original core proposal
2 parents 9275d10 + 8f411d5 commit ad2abd7

File tree

302 files changed

+86197
-1904
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

302 files changed

+86197
-1904
lines changed

.gitattributes

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
*.rst linguist-documentation=false
2+
document/* linguist-documentation=false
3+
document/*.rst linguist-documentation=false
4+
document/*/*.rst linguist-documentation=false
5+
test/harness/wast.js linguist-vendored
6+
test/harness/testharness* linguist-vendored
7+

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
**/*~
2+
**/*.tmproj
3+
**/*.pyc
4+
**/_build
5+
**/_output

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "document/core/util/katex"]
2+
path = document/core/util/katex
3+
url = https://github.com/KaTeX/KaTeX.git

.travis.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
language: c++
2+
language: python
3+
python:
4+
- "2.7"
5+
6+
sudo: on
7+
8+
install:
9+
- ./interpreter/meta/travis/install-ocaml.sh
10+
- sudo pip install sphinx==1.7.9
11+
- sudo apt-get install texlive-full
12+
- git clone https://github.com/tabatkins/bikeshed.git
13+
- pip install --editable $PWD/bikeshed
14+
- bikeshed update
15+
16+
script:
17+
- ./interpreter/meta/travis/build-test.sh
18+
- bash ./document/travis-deploy.sh
19+
20+
os: linux
21+
22+
env:
23+
global:
24+
- ENCRYPTION_LABEL: "304454be9d6c"
25+
- COMMIT_AUTHOR_EMAIL: "[email protected]"

Contributing.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Contributing to WebAssembly
2+
3+
Interested in participating? Please follow
4+
[the same contributing guidelines as the design repository][].
5+
6+
[the same contributing guidelines as the design repository]: https://github.com/WebAssembly/design/blob/master/Contributing.md
7+
8+
Also, please be sure to read [the README.md](README.md) for this repository.

LICENSE

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1-
Please see the LICENSE file for particular directories for the terms applicable
2-
to that directory and its relative sub-directories.
1+
Please see the LICENSE file in each top-level directory for the terms applicable to that directory and its relative sub-directories.
32

43
The relevant directories and licenses are:
54

6-
design/ - Apache License 2.0
7-
8-
(Other directories will be added when the [module-linking] repository merges.)
9-
10-
[module-linking]: https://github.com/webassembly/module-linking/
5+
document/ - W3C Software and Document Notice and License
6+
interpreter/ - Apache License 2.0
7+
test/ - Apache License 2.0
8+
papers/ - Creative Commons Attribution 4.0 International License

README.md

Lines changed: 23 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,27 @@
1-
# Module Linking proposal
1+
[![Build Status](https://travis-ci.org/WebAssembly/spec.svg?branch=master)](https://travis-ci.org/WebAssembly/spec)
22

3-
This repository contains the Module Linking proposal, which is the
4-
first proposal of the [Component Model].
3+
# Module Linking Proposal for WebAssembly
54

6-
Links:
7-
* the general [explainer](design/proposals/module-linking/Explainer.md) for this proposal
8-
* a sketch of the [binary format](design/proposals/module-linking/Binary.md)
9-
* a description of [module subtyping](design/proposals/module-linking/Subtyping.md)
5+
This repository is a clone of [github.com/WebAssembly/spec/](https://github.com/WebAssembly/spec/).
6+
It is meant for discussion, prototype specification and implementation of a
7+
proposal to add support for module linking to WebAssembly.
108

11-
All Component Model work is done as part of the [W3C WebAssembly Community Group].
12-
To contribute to any of these repositories, see the Community Group's
13-
[Contributing Guidelines].
9+
See the [explainer](proposals/module-linking/Explainer.md) for a summary of the
10+
proposal.
1411

15-
[Component Model]: https://github.com/webassembly/component-model/
16-
[W3C WebAssembly Community Group]: https://www.w3.org/community/webassembly/
17-
[Contributing Guidelines]: https://webassembly.org/community/contributing/
12+
# spec
13+
14+
This repository holds the sources for the WebAssembly draft specification
15+
(to seed a future
16+
[WebAssembly Working Group](https://lists.w3.org/Archives/Public/public-new-work/2017Jun/0005.html)),
17+
a reference implementation, and the official testsuite.
18+
19+
A formatted version of the spec is available here:
20+
[webassembly.github.io/spec](https://webassembly.github.io/spec/),
21+
22+
Participation is welcome. Discussions about new features, significant semantic
23+
changes, or any specification change likely to generate substantial discussion
24+
should take place in
25+
[the WebAssembly design repository](https://github.com/WebAssembly/design)
26+
first, so that this spec repository can remain focused. And please follow the
27+
[guidelines for contributing](Contributing.md).

deploy_key.enc

3.17 KB
Binary file not shown.

design/README.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

design/high-level/Choices.md

Lines changed: 0 additions & 34 deletions
This file was deleted.

design/high-level/FAQ.md

Lines changed: 0 additions & 26 deletions
This file was deleted.

design/high-level/Goals.md

Lines changed: 0 additions & 55 deletions
This file was deleted.

design/high-level/README.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)