Skip to content

Commit 88cc7b8

Browse files
committed
Merge pull request w3c#28 from shans/initialConversion
Convert web animations specification to bikeshed.
2 parents 6a4de41 + 936abfc commit 88cc7b8

File tree

177 files changed

+10440
-8686
lines changed

Some content is hidden

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

177 files changed

+10440
-8686
lines changed

Gruntfile.js

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
module.exports = function(grunt) {
2+
var port = grunt.option('port') || 8000;
3+
4+
grunt.initConfig({
5+
shell: {
6+
build: {
7+
options: {
8+
stdout: true
9+
},
10+
command: 'bikeshed.py spec Overview.src.html'
11+
},
12+
update: {
13+
options: {
14+
stdout: true
15+
},
16+
command: 'bikeshed.py update'
17+
}
18+
},
19+
20+
watch: {
21+
options: {
22+
livereload: true,
23+
},
24+
files: [ 'Overview.src.html', 'biblio.json' ],
25+
tasks: 'default'
26+
},
27+
28+
express: {
29+
all: {
30+
options: {
31+
bases: [ '.' ],
32+
port: port,
33+
hostname: 'localhost',
34+
livereload: true
35+
}
36+
}
37+
},
38+
39+
open: {
40+
all: {
41+
path: 'http://localhost:' + port + '/Overview.html'
42+
}
43+
},
44+
});
45+
46+
grunt.loadNpmTasks('grunt-contrib-watch');
47+
grunt.loadNpmTasks('grunt-express');
48+
grunt.loadNpmTasks('grunt-open');
49+
grunt.loadNpmTasks('grunt-shell');
50+
51+
grunt.registerTask('default', ['shell:build']);
52+
grunt.registerTask('edit', [ 'shell:update',
53+
'shell:build',
54+
'express',
55+
'open',
56+
'watch']);
57+
};

MathJax/MathJax.js

Lines changed: 30 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MathJax/config/MML_SVGorMML.js

Lines changed: 47 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MathJax/config/local/local.js

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/*
2+
* Copyright (c) 2009 Design Science, Inc.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
MathJax.Hub.Config({
17+
SVG: { linebreaks: { automatic: true } }
18+
});
19+
20+
MathJax.Ajax.loadComplete("[MathJax]/config/local/local.js");

MathJax/extensions/MathEvents.js

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MathJax/extensions/MathMenu.js

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MathJax/extensions/MathZoom.js

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)