Skip to content

Commit 6da1bef

Browse files
Add contributors, and sort alphabetically (#336)
Co-authored-by: Marcos Caceres
1 parent 85445eb commit 6da1bef

File tree

2 files changed

+34
-43
lines changed

2 files changed

+34
-43
lines changed

media-source-respec.html

Lines changed: 34 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -50,30 +50,6 @@
5050
],
5151

5252
mseDefGroupName: "media-source",
53-
mseContributors: [
54-
"Bob Lund",
55-
"Alex Giladi",
56-
"Duncan Rowden",
57-
"Mark Vickers",
58-
"Glenn Adams",
59-
"Frank Galligan",
60-
"Steven Robertson",
61-
"Matt Ward",
62-
"David Dorwin",
63-
"Kevin Streeter",
64-
"Joe Steele",
65-
"Michael Thornburgh",
66-
"Philip Jägenstedt",
67-
"John Simmons",
68-
"Pierre Lemieux",
69-
"Cyril Concolato",
70-
"Ralph Giles",
71-
"David Singer",
72-
"Tatsuya Igarashi",
73-
"Chris Poole",
74-
"Jer Noble",
75-
"Matthew Gregan"
76-
],
7753

7854
// name of the WG
7955
group: "media",
@@ -3166,7 +3142,40 @@

Examples

31663142

31673143
<section id="acknowledgements">
31683144
<h2>Acknowledgmentsh2>
3169-
The editors would like to thank <a def-id="contributors">a> for their contributions to this specification.
3145+
<p>The editors would like to thank
3146+
Alex Giladi,
3147+
Bob Lund,
3148+
Chris Needham,
3149+
Chris Poole,
3150+
Chris Wilson,
3151+
Cyril Concolato,
3152+
Dale Curtis,
3153+
David Dorwin,
3154+
David Singer,
3155+
Duncan Rowden,
3156+
François Daoust,
3157+
Frank Galligan,
3158+
Glenn Adams,
3159+
Jer Noble,
3160+
Joe Steele,
3161+
John Simmons,
3162+
Kagami Sascha Rosylight,
3163+
Kevin Streeter,
3164+
Marcos Cáceres,
3165+
Mark Vickers,
3166+
Matt Ward,
3167+
Matthew Gregan,
3168+
Michael(tm) Smith,
3169+
Michael Thornburgh,
3170+
Mounir Lamouri,
3171+
Paul Adenot,
3172+
Philip Jägenstedt,
3173+
Philippe Le Hegaret,
3174+
Pierre Lemieux,
3175+
Ralph Giles,
3176+
Steven Robertson,
3177+
and Tatsuya Igarashi for their contributions to this specification.
3178+
p>
31703179
section>
31713180

31723181
<section id="VideoPlaybackQuality" class="appendix informative">

media-source.js

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -127,22 +127,6 @@
127127
df.appendChild(f);
128128
}
129129

130-
function contributors_helper(doc, df, id, text) {
131-
var contributors = window.respecConfig.mseContributors;
132-
contributors.sort();
133-
134-
var str = "";
135-
for (var i = 0; i < contributors.length - 1; ++i) {
136-
if (i > 0)
137-
str += ", ";
138-
str += contributors[i];
139-
}
140-
str += ", and ";
141-
str += contributors[contributors.length - 1];
142-
143-
df.appendChild(doc.createTextNode(str));
144-
}
145-
146130
function append_error_helper(doc, df, id, text) {
147131
link_helper(doc, df, id, 'append error algorithm');
148132
}
@@ -215,8 +199,6 @@
215199

216200
'media-data-cannot-be-fetched': { func: fragment_helper, fragment: '', link_text: '"If the media data cannot be fetched at all, due to network errors, causing the user agent to give up trying to fetch the resource"', },
217201
'Otherwise-mode-is-local': { func: fragment_helper, fragment: '', link_text: '"Otherwise (mode is local)"', },
218-
219-
'contributors': { func: contributors_helper, fragment: '', link_text: '', },
220202
};
221203

222204
// These definitions are only referenced from the registries.

0 commit comments

Comments
 (0)