@@ -9,45 +9,23 @@ mkdir -p deploy/oas
9
9
mkdir -p deploy/js
10
10
11
11
cd scripts/md2html
12
- mkdir -p history
13
- cat > history/MAINTAINERS_v2.0.md << EOF
14
- ## Active
15
- * Jeremy Whitlock [@whitlockjc](https://github.com/whitlockjc)
16
- * Marsh Gardiner [@earth2marsh](https://github.com/earth2marsh)
17
- * Ron Ratovsky [@webron](https://github.com/webron)
18
- * Tony Tam [@fehguy](https://github.com/fehguy)
19
- EOF
20
- cat > history/MAINTAINERS_v3.0.0.md << EOF
21
- ## Active
22
- * Jeremy Whitlock [@whitlockjc](https://github.com/whitlockjc)
23
- * Marsh Gardiner [@earth2marsh](https://github.com/earth2marsh)
24
- * Ron Ratovsky [@webron](https://github.com/webron)
25
- * Tony Tam [@fehguy](https://github.com/fehguy)
26
-
27
- ## Emeritus
28
- * Jason Harmon [@jharmn](https://github.com/jharmn)
29
- EOF
30
- git show c740e95:MAINTAINERS.md > history/MAINTAINERS_v3.0.1.md
31
- git show 3140640:MAINTAINERS.md > history/MAINTAINERS_v3.0.2.md
32
- cp history/MAINTAINERS_v3.0.2.md history/MAINTAINERS_v3.0.3.md
33
- cp history/MAINTAINERS_v3.0.2.md history/MAINTAINERS_v3.1.0.md
34
- # TODO: adjust commit for 3.0.4, 3.1.1
35
- git show c3b88ed:EDITORS.md > history/MAINTAINERS_v3.0.4.md
36
- cp history/MAINTAINERS_v3.0.4.md history/MAINTAINERS_v3.1.1.md
37
- # add lines for 3.2.0, ...
38
12
39
13
cp -p ../../node_modules/respec/builds/respec-w3c.* ../../deploy/js/
40
14
41
15
latest=` git describe --abbrev=0 --tags`
42
16
latestCopied=none
43
17
lastMinor=" -"
44
18
for filename in $( ls -1 ../../versions/[23456789].* .md | sort -r) ; do
19
+ if [[ ${filename} == * -editors.md ]]; then
20
+ continue
21
+ fi
22
+
45
23
version=$( basename " $filename " .md)
46
24
minorVersion=${version: 0: 3}
47
25
tempfile=../../deploy/oas/v$version -tmp.html
48
26
echo -e " \n=== v$version ==="
49
27
50
- node md2html.js --maintainers ./history/MAINTAINERS_v $version .md ${filename} > $tempfile
28
+ node md2html.js --maintainers ../../versions/ $version -editors .md ${filename} > $tempfile
51
29
npx respec --use-local --src $tempfile --out ../../deploy/oas/v$version .html
52
30
rm $tempfile
53
31
0 commit comments