Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed small typo #6

Closed
wants to merge 35 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
2bdcf78
Adding the Chromium based video sharing demo.
Dec 13, 2013
dbffd17
Encoding fix.
Dec 13, 2013
28a98be
Denote download OS.
Dec 13, 2013
788232d
Building your own project section added.
Dec 13, 2013
13860dc
Namespacing and shortening of the shim code according to Anssi's sugg…
Dec 13, 2013
8dbd5b8
Incorporating Anssi's feedback.
Dec 13, 2013
fc8b72c
Clarification on how the second screen is set up.
Dec 13, 2013
98bbb60
Missing hash in link.
Dec 13, 2013
d83eb86
Video player anchor link quotes fix.
Dec 13, 2013
e461dc4
Wording in the 'build your own' section.
Dec 13, 2013
50d26a8
Incorrect URLs after files were moved corrected.
Feb 28, 2014
0d2fd3d
Incorporating Soonbo Han's suggested change for resolving promise on …
Feb 28, 2014
667c6eb
Moving demo to its own repository.
Jun 16, 2014
edc7273
Fixed a few typos
tagawa Jul 2, 2014
cd53969
Fixed a few typos
tagawa Jul 2, 2014
75ce0fc
Merge pull request #2 from drott/moveDemo
Jul 2, 2014
a88283d
Merge pull request #3 from tagawa/spelling
Jul 2, 2014
c29153f
Moving a snapshot of the previous draft report to the 20131112 timest…
Jul 2, 2014
8be327d
Fixed typos that David found.
Jul 2, 2014
98a0f6a
Moving to cg-final css template.
Jul 2, 2014
c276937
Copyright changed.
Jul 2, 2014
e158636
Edited to match the API discussion on the Wiki page, old parts removed.
Jul 2, 2014
7bdb501
Add tidy-html5 configuration.
Jul 2, 2014
0e5ac65
tidied.
Jul 2, 2014
1cd6c86
Moving Conformance and Terminology sections, minor fixes.
Jul 2, 2014
98e011b
Formatting.
Jul 2, 2014
a89d613
Addressing github issue #1.
Jul 3, 2014
27143b7
Updating status of the document and abstract in new and snapshot vers…
Jul 3, 2014
6d26955
Extended introduction for the Interfaces section. Addresses github is…
Jul 3, 2014
b0facf9
Removed (Draft of) status
Jul 3, 2014
b436446
Anssi removed as editor.
Jul 3, 2014
9cd2840
Incorporated Francois' suggestions.
Jul 3, 2014
e3c5abe
Merge pull request #4 from drott/gh-pages
Jul 4, 2014
6dd8a0d
Extending introduction according to Wayne's suggestion.
Jul 8, 2014
1b7ccf4
Fixed small typo
tagawa Jul 10, 2014
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
587 changes: 587 additions & 0 deletions 20131112/index.html

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# http://wiki.whatwg.org/wiki/GitHub#Makefile

ANOLIS = anolis
TIDY-HTML5 = tidy-html5

all: index.html ../xref/xrefs/dom/presentation.json
all: tidy index.html ../xref/xrefs/dom/presentation.json

index.html: Overview.src.html ../xref Makefile
$(ANOLIS) --w3c-compat-substitutions \
Expand All @@ -11,3 +12,6 @@ index.html: Overview.src.html ../xref Makefile

../xref/xrefs/dom/presentation.json: Overview.src.html Makefile
$(ANOLIS) --dump-xrefs=$@ $< /tmp/spec

tidy: Overview.src.html build/tidyconfig.txt
$(TIDY-HTML5) -config build/tidyconfig.txt -o $< $<
Loading