forked from w3c/aria-practices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
respec-config.js
158 lines (145 loc) · 4.06 KB
/
respec-config.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
'use strict';
// eslint-disable-next-line no-unused-vars
var respecConfig = {
// Specification status (e.g., WD, LC, NOTE, etc.). If in doubt use ED.
specStatus: 'ED',
// crEnd: "2012-04-30",
// perEnd: "2013-07-23",
// publishDate: "2013-08-22",
noRecTrack: true,
// The specifications short name, as in https://www.w3.org/TR/short-name/
shortName: 'wai-aria-practices-1.2',
// If you wish the publication date to be other than today,
// set publishDate.
// publishDate: "2009-08-06",
copyrightStart: '2018',
// If there is a previously published draft, uncomment this
// and set its YYYY-MM-DD date and its maturity status.
//
// previousPublishDate: "",
// previousMaturity: "",
// prevRecURI: "",
// previousDiffURI: "",
// Github repo
github: 'w3c/aria-practices',
// If this is a LCWD, uncomment and set the end of its review period
// lcEnd: "2012-02-21",
// Editors, add as many as you like.
// “name” is the only required field.
editors: [
{
name: 'Matt King',
mailto: 'mck@fb.com',
company: 'Facebook',
companyURI: 'https://www.facebook.com/',
w3cid: 44582,
},
{
name: 'JaEun Jemma Ku',
mailto: 'jku@uic.edu',
company: 'University of Illinois',
companyURI: 'https://illinois.edu/',
w3cid: 74097,
},
{
name: 'James Nurthen',
mailto: 'nurthen@adobe.com',
company: 'Adobe',
companyURI: 'https://www.adobe.com/',
w3cid: 37155,
},
{
name: 'Zoë Bijl',
company: 'Invited Expert',
w3cid: 74040,
},
{
name: 'Michael Cooper',
url: 'https://www.w3.org/People/cooper/',
company: 'W3C',
companyURI: 'https://www.w3.org/',
w3cid: 34017,
},
],
formerEditors: [
{
name: 'Joseph Scheuhammer',
company: 'Inclusive Design Research Centre, OCAD University',
companyURI: 'https://idrc.ocad.ca/',
w3cid: 42279,
retiredDate: '2014-10-01',
},
{
name: 'Lisa Pappas',
company: 'SAS',
companyURI: 'https://www.sas.com/',
w3cid: 41725,
retiredDate: '2009-10-01',
},
{
name: 'Rich Schwerdtfeger',
company: 'IBM Corporation',
companyURI: 'https://ibm.com/',
w3cid: 2460,
retiredDate: '2014-10-01',
},
],
// Authors, add as many as you like.
// This is optional, uncomment if you have authors as well as editors.
// Same format and requirements as editors.
// authors: [
// {
// name: "Your Name",
// url: "https://example.org/",
// company: "Your Company",
// companyURI: "https://example.com/"
// },
// ],
// Spec URLs
ariaSpecURLs: {
ED: 'https://w3c.github.io/aria/',
FPWD: 'https://www.w3.org/TR/wai-aria-1.2/',
WD: 'https://www.w3.org/TR/wai-aria-1.2/',
REC: 'https://www.w3.org/TR/wai-aria/',
},
accNameURLs: {
ED: 'https://w3c.github.io/accname/',
WD: 'https://www.w3.org/TR/accname-1.2/',
FPWD: 'https://www.w3.org/TR/accname-1.2/',
REC: 'https://www.w3.org/TR/accname/',
},
coreMappingURLs: {
ED: 'https://w3c.github.io/core-aam/',
WD: 'https://www.w3.org/TR/core-aam-1.2/',
FPWD: 'https://www.w3.org/TR/core-aam-1.2/',
REC: 'https://www.w3.org/TR/core-aam/',
},
htmlMappingURLs: {
ED: 'https://w3c.github.io/html-aam/',
WD: 'https://www.w3.org/TR/html-aam-1.0/',
FPWD: 'https://www.w3.org/TR/html-aam-1.0/',
REC: 'https://www.w3.org/TR/html-aam-1.0/',
},
// alternateFormats: [
// {
// uri: 'aria-practices-diff.html',
// label: "Diff from Previous Recommendation"
// },
// {
// uri: 'aria-practices.ps',
// label: "PostScript version"
// },
// {
// uri: 'aria-practices.pdf',
// label: "PDF version"
// }
// ],
// errata: 'https://www.w3.org/2010/02/rdfa/errata.html',
group: 'aria',
// Name (without the @w3c.org) of the public mailing
// to which comments are due.
wgPublicList: 'public-aria-practices',
maxTocLevel: 4,
// eslint-disable-next-line no-undef
preProcess: [linkCrossReferences],
};