@@ -25,35 +25,8 @@ latest=$(git describe --abbrev=0 --tags)
2525latestCopied=" none"
2626lastMinor=" -"
2727
28- mkdir -p history
29- cat > history/MAINTAINERS_v2.0.md << EOF
30- ## Active
31- * Jeremy Whitlock [@whitlockjc](https://github.com/whitlockjc)
32- * Marsh Gardiner [@earth2marsh](https://github.com/earth2marsh)
33- * Ron Ratovsky [@webron](https://github.com/webron)
34- * Tony Tam [@fehguy](https://github.com/fehguy)
35- EOF
36- cat > history/MAINTAINERS_v3.0.0.md << EOF
37- ## Active
38- * Jeremy Whitlock [@whitlockjc](https://github.com/whitlockjc)
39- * Marsh Gardiner [@earth2marsh](https://github.com/earth2marsh)
40- * Ron Ratovsky [@webron](https://github.com/webron)
41- * Tony Tam [@fehguy](https://github.com/fehguy)
42-
43- ## Emeritus
44- * Jason Harmon [@jharmn](https://github.com/jharmn)
45- EOF
46- git show c740e95:MAINTAINERS.md > history/MAINTAINERS_v3.0.1.md
47- git show 3140640:MAINTAINERS.md > history/MAINTAINERS_v3.0.2.md
48- cp history/MAINTAINERS_v3.0.2.md history/MAINTAINERS_v3.0.3.md
49- cp history/MAINTAINERS_v3.0.2.md history/MAINTAINERS_v3.1.0.md
50- # TODO: adjust commit for 3.0.4, 3.1.1
51- git show c3b88ed:EDITORS.md > history/MAINTAINERS_v3.0.4.md
52- cp history/MAINTAINERS_v3.0.4.md history/MAINTAINERS_v3.1.1.md
53- # add lines for 3.2.0, ...
54-
5528if [ -z " $1 " ]; then
56- specifications=$( ls -1 versions/[23456789].* .md | sort -r)
29+ specifications=$( ls -1 versions/[23456789].* .md | grep -v -e " \-editors " | sort -r)
5730elif [ " $1 " = " latest" ]; then
5831 specifications=$( ls -1 versions/$latest .md)
5932elif [ " $1 " = " src" ]; then
@@ -67,13 +40,14 @@ cp -p node_modules/respec/builds/respec-w3c.* $deploydir/js/
6740for specification in $specifications ; do
6841 version=$( basename $specification .md)
6942 minorVersion=${version: 0: 3}
70- destination=" $deploydir /$version .html"
7143 tempfile=" $deploydir /temp/$version .html"
7244
7345 if [ " $1 " = " src" ]; then
46+ destination=" $deploydir /$version .html"
7447 maintainers=" EDITORS.md"
7548 else
76- maintainers=" history/MAINTAINERS_v$version .md"
49+ destination=" $deploydir /v$version .html"
50+ maintainers=" $( dirname $specification ) /$version -editors.md"
7751 fi
7852
7953 echo === Building $version to $destination
10579rm $deploydir /js/respec-w3c.*
10680rmdir $deploydir /js
10781rmdir $deploydir /temp
108- rm -r history
0 commit comments