-
Notifications
You must be signed in to change notification settings - Fork 13
/
respecConfig.js
79 lines (67 loc) · 2.45 KB
/
respecConfig.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
var respecConfig = {
// specification status (e.g. WD, LCWD, WG-NOTE, etc.). If in doubt use ED.
specStatus: 'unofficial',
// the specification's short name, as in http://www.w3.org/TR/short-name/
shortName: 'reqs-installable-webapps',
// 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 the last modification, set this
// publishDate: "2009-08-06",
// if the specification's copyright date is a range of years, specify
// the start date here:
// copyrightStart: "2005"
// if there is a previously published draft, uncomment this and set its YYYY-MM-DD date
// and its maturity status
// previousPublishDate: "1977-03-15",
// previousMaturity: "WD",
// if there a publicly available Editor's Draft, this is the link
// edDraftURI: "http://berjon.com/",
// if this is a LCWD, uncomment and set the end of its review period
// lcEnd: "2009-08-05",
// editors, add as many as you like
// only "name" is required
editors: [
{
name: 'Marcos Cáceres',
url: 'http://marcosc.com',
mailto: '[email protected]',
company: 'Mozilla',
companyURL: 'http://mozilla.com/'
},
{
name: 'Ernesto Jiménez',
url: 'http://ernesto-jimenez.com',
mailto: '[email protected]'
}
],
// name of the WG
wg: 'Web and Mobile Interest Group (WebMob)',
// URI of the public WG page
wgURI: 'http://www.w3.org/Mobile/IG/',
// name (without the @w3c.org) of the public mailing to which comments are due
wgPublicList: 'public-web-mobile',
// 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: '',
// !!!! IMPORTANT !!!! MAKE THE ABOVE BLINK IN YOUR HEAD,
issueBase: 'https://github.com/w3c-webmob/installable-webapps/issues',
otherLinks: [{
key: 'Repository',
data: [
{
href: 'https://github.com/w3c-webmob/installable-webapps'
},
{
value: 'issues',
href: 'https://github.com/w3c-webmob/installable-webapps/issues'
},
{
value: 'Commit History.',
href: 'https://github.com/w3c-webmob/installable-webapps/commits/gh-pages'
}]
}]
};