File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ status ?=
18
18
group ?= CSS
19
19
opts ?=
20
20
target ?= Overview
21
+ markup ?= html
21
22
22
23
% .html : % .src.html
23
24
@echo " Calling post-processor to generate $@ ..."
@@ -29,6 +30,12 @@ target ?= Overview
29
30
@curl -K ~ /.curl-w3.org -s -S -F output=err -F file=@$< \
30
31
-F group=$(group ) -F method=file -F date=$(cdate ) -F status=$(status ) \
31
32
$(opts ) -o $@ https://www.w3.org/Style/Group/process.cgi
33
+ % .html : % .bs
34
+ curl -s -L -F file=@$< -F time=$(cdate ) -F output=html \
35
+ -F paragraph=$(markup ) $(opts ) -o $@ http://api.csswg.org/bikeshed/
36
+ % .err : % .bs
37
+ curl -s -L -F file=@$< -F time=$(cdate ) -F output=err \
38
+ -F paragraph=$(markup ) $(opts ) -o $@ http://api.csswg.org/bikeshed/
32
39
33
40
# For Dispositions of Comments in css3-background:
34
41
% .html : % .txt; awk -f issues-txt-to-html.awk $< >$@
@@ -48,7 +55,7 @@ all: check $(target).html
48
55
# egrep will exit with a zero exit code if there is anything left
49
56
check : $(target ) .err
50
57
@cat $<
51
- @if egrep -v ' ^(Warning:|\(Processed in .* seconds\)|No errors)' $< ; \
58
+ @if egrep -qv ' ^(Warning:|\(Processed in .* seconds\)|No errors)' $< ; \
52
59
then false ; else true ; fi
53
60
54
61
You can’t perform that action at this time.
0 commit comments