Skip to content

Commit 97daf52

Browse files
committed
Initial draft.
This document was sent to the working group in https://lists.w3.org/Archives/Member/w3c-archive/2012Mar/0723.html https://lists.w3.org/Archives/Member/w3c-css-wg/2012JanMar/0489.html per the chair's request, minuted in http://lists.w3.org/Archives/Public/www-style/2012Mar/0655.html , to send it to the member list first. The group resolved in today's teleconference that it could be published as an editor's draft.
1 parent ab04d5c commit 97daf52

File tree

3 files changed

+1256
-0
lines changed

3 files changed

+1256
-0
lines changed

css-size-adjust/Makefile

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Calling the post-processor with file-upload. Assumes the username
2+
# and password are in ~/.curl-w3.org
3+
#
4+
# Possible other options:
5+
# -F date=YYYY-MM-DD
6+
# -F ids=on
7+
8+
%.html: %.src.html
9+
@echo "Calling post-processor to generate $@..."
10+
@curl -F file=@$< -F group=CSS -F output=html -F method=file -s -K ~/.curl-w3.org http://cgi.w3.org/member-bin/process.cgi >$@
11+
%.err: %.src.html
12+
@echo "Calling post-processor to check $<..."
13+
@curl -F file=@$< -F group=CSS -F output=err -F method=file -s -K ~/.curl-w3.org http://cgi.w3.org/member-bin/process.cgi >$@
14+
15+
16+
17+
all: check Overview.html
18+
@echo Done.
19+
20+
check: Overview.err
21+
@cat $<
22+
@grep -q '^No errors$$' $< # Force a non-zero exit code if errors
23+
24+
25+
26+
# A handy shortcut:
27+
28+
commit: update clean all
29+
cvs commit -m 'Generated. Do not edit!' Overview.html
30+
31+
update:
32+
cvs update
33+
34+
clean:
35+
rm Overview.html
36+
37+
38+
39+
.PHONY: check commit update clean

0 commit comments

Comments
 (0)