forked from w3c/mediacapture-fromelement
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfromelement.js
105 lines (89 loc) · 3.94 KB
/
fromelement.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
var respecConfig = {
// specification status (e.g. WD, LCWD, NOTE, etc.). If in doubt use ED.
specStatus: "ED", // "base",
// the specification's short name, as in http://www.w3.org/TR/short-name/
shortName: "mediacapture-fromelement",
// if your specification has a subtitle that goes below the main
// formal title, define it here
// subtitle : "an excellent document",
// if you wish the publication date to be other than today, set this
// publishDate: "2009-08-06",
// new ability to override the copyright completely
// overrideCopyright: "This document is licensed under a <a href='http://creativecommons.org/licenses/by-nd/4.0/legalcode'>Creative Commons Attribution-NoDerivatives 4.0 International (CC BY-ND 4.0) License. </a> Copyright 2014 Mozilla. ",
// if the specification's copyright date is a range of years, specify
// the start date here:
copyrightStart: "2015",
// if there is a previously published draft, uncomment this and set its YYYY-MM-DD
// prevED: "http://dev.w3.org/2011/webrtc/editor/archives/20140321/screenshare.html",
// if there a publicly available Editor's Draft, this is the link
edDraftURI: "https://w3c.github.io/mediacapture-fromelement/",
// if this is a LCWD, uncomment and set the end of its review period
// lcEnd: "2009-08-05",
// if you want to have extra CSS, append them to this list
// it is recommended that the respec.css stylesheet be kept
//extraCSS: ["http://dev.w3.org/2009/dap/ReSpec.js/css/respec.css"],
//extraCSS: ["../../../2009/dap/ReSpec.js/css/respec.css"],
// editors, add as many as you like
// only "name" is required
editors: [
// { name: "Your Name", url: "http://example.org/",
// company: "Your Company", companyURL: "http://example.com/" },
{
name: "Martin Thomson",
company: "Mozilla",
w3cid: 68503
}, {
name: "Miguel Casas-Sanchez",
company: "Google, Inc.",
companyURL: "http://www.google.com",
url: "mailto:[email protected]?subject=MediaCapture%20fromElement%20W3C%20Spec",
w3cid: 82825,
note: "Media Element parts."
}, {
name: "Emircan Uysaler",
company: "Google, Inc.",
companyURL: "http://www.google.com",
url: "mailto:[email protected]?subject=MediaCapture%20fromElement%20W3C%20Spec",
w3cid: 89334,
note: "Canvas Element parts."
}
],
// authors, add as many as you like.
// This is optional, uncomment if you have authors as well as editors.
// only "name" is required. Same format as editors.
//authors: [
// { name: "Your Name", url: "http://example.org/",
// company: "Your Company", companyURL: "http://example.com/" },
//],
// name of the WG
wg: ["Device and Sensors Working Group", "Web Real-Time Communications Working Group"],
// URI of the public WG page
wgURI: ["https://www.w3.org/2009/dap/", "https://www.w3.org/2011/04/webrtc/"],
// name (without the @w3.org) of the public mailing to which comments are due
wgPublicList: "public-media-capture",
// URI of the patent status for this WG, for Rec-track documents
// !!!! IMPORTANT !!!!
// This is important for Rec-track documents, do not copy a patent URI from a random
// document unless you know what you're doing. If in doubt ask your friendly neighbourhood
// Team Contact.
wgPatentURI: ["https://www.w3.org/2004/01/pp-impl/43696/status", "https://www.w3.org/2004/01/pp-impl/47318/status"],
otherLinks: [
{
key: "Participate",
data: [
{
value: "Mailing list",
href: "https://lists.w3.org/Archives/Public/public-media-capture/"
},
{
value: "Browse open issues",
href: "https://github.com/w3c/mediacapture-fromelement/issues"
},
{
value: "File a bug",
href: "https://github.com/w3c/mediacapture-fromelement/issues/new"
}
]
}
]
};