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

Commit 4bb93d5

Browse files
committed
Update to latest respec and cleanup
1 parent 28dd035 commit 4bb93d5

File tree

2 files changed

+31
-41
lines changed

2 files changed

+31
-41
lines changed

Diff for: index.html

+14-41
Original file line numberDiff line numberDiff line change
@@ -2,46 +2,20 @@
22

33
<html>
44
<head>
5-
<meta name="generator" content=
6-
"HTML Tidy for HTML5 (experimental) for Mac OS X https://github.com/w3c/tidy-html5/tree/d193420">
7-
85
<title>Web Application Manifest Format and Management APIs</title>
96
<meta http-equiv='Content-Type' content='text/html; charset=utf-8'>
10-
<script src='http://dev.w3.org/2009/dap/ReSpec.js/js/respec.js' class=
11-
'remove'>
12-
</script>
13-
<script class='remove'>
14-
var respecConfig = {
15-
// document info
16-
subtitle: "A format for describing web applications and APIs to install, launch and manage them",
17-
specStatus: "ED",
18-
shortName: "webapps-manifest-api",
19-
copyrightStart: "2012",
20-
previousPublishDate: "2012-03-19",
21-
previousMaturity: "unofficial",
22-
// lcEnd: ...
23-
extraCSS: ["http://dev.w3.org/2009/dap/ReSpec.js/css/respec.css"],
24-
inlineCSS: true,
25-
// editors
26-
editors: [
27-
{ name: "Anant Narayanan",
28-
company: "Mozilla", companyURL: "http://mozilla.org/" }
29-
],
30-
// WG
31-
wg: "Webapps Working Group",
32-
wgURI: "http://www.w3.org/2008/webapps/",
33-
wgPublicList: "public-webapps",
34-
wgPatentURI: "http://www.w3.org/2004/01/pp-impl/42538/status",
35-
};
36-
37-
function hilight(r, content) {
38-
return '<em>' +content+ '</em>' ;
39-
}
40-
41-
function fixSchema(r, content) {
42-
return r._esc(content);
43-
}
7+
<script class="remove" src="http://www.w3.org/Tools/respec/respec-w3c-common"
8+
type="text/javascript">
9+
<!-- keep this comment -->
10+
</script>
11+
<script class="remove" src="webapps.js" type="text/javascript">
12+
<!-- keep this comment -->
4413
</script>
14+
<style>
15+
ul.properties > li {
16+
margin-bottom: 1em;
17+
}
18+
</style>
4519
</head>
4620

4721
<body>
@@ -98,7 +72,6 @@ <h2>Example</h2>
9872
"orientation": "landscape",
9973
"fullscreen": "true"
10074
}
101-
10275
</pre>
10376
</section>
10477

@@ -107,7 +80,7 @@ <h2>Properties</h2>
10780

10881
<h3>Mandatory Properties</h3>
10982

110-
<ul>
83+
<ul class="properties">
11184
<li><dfn>name</dfn>: The name of the web application in the default
11285
locale. Maximum length is 128 characters.</li>
11386

@@ -120,9 +93,9 @@ <h3>Mandatory Properties</h3>
12093

12194
<h3>Optional Properties</h3>
12295

123-
<ul>
96+
<ul class="properties">
12497
<li><dfn>launch_path</dfn>: The path within the web application's
125-
origin that is loaded when the application is launched</li>
98+
origin that is loaded when the application is launched.</li>
12699

127100
<li><dfn>icons</dfn>: A map of icon sizes to URIs of the icons (which
128101
may be absolute or data URIs). Icons MUST be square.</li>

Diff for: webapps.js

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
var respecConfig = {
2+
previousURI: "-",
3+
specStatus: "ED",
4+
shortName: "webapps-spec",
5+
subtitle: "A format for describing web applications and APIs to install, launch and manage them",
6+
edDraftURI: "http://mozilla.github.com/webapps-spec/",
7+
extraCSS: ["http://dev.w3.org/2009/dap/ReSpec.js/css/respec.css"],
8+
9+
editors: [
10+
{ name: "Anant Narayanan", company: "Mozilla" }
11+
],
12+
13+
wg: "Webapps Working Group",
14+
wgURI: "http://www.w3.org/2008/webapps/",
15+
wgPublicList: "public-webapps",
16+
wgPatentURI: "http://www.w3.org/2004/01/pp-impl/42538/status"
17+
};

0 commit comments

Comments
 (0)