Skip to content

Commit dc6f45d

Browse files
committed
[css-transforms-1] Move all open issues to GitHub. Update the DOC to list GitHub issues in Response: lines. Add to the Makefile a command to build the DOC html file. Update the spec to link to the GitHub issues list.
1 parent f041c3e commit dc6f45d

4 files changed

Lines changed: 620 additions & 587 deletions

File tree

css-transforms/Makefile

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
# $Id: Makefile,v 1.5 2008/02/06 14:05:15 mike Exp $
22
#
3-
# FIXME: New documentation needed.
4-
#
53
# Use "make REMOTE=1" to use remote bikeshed
4+
# Use "make issues REMOTE=1" to update issues with remote bikeshed
65

76
SOURCEFILE=Overview.bs
87
LINKEDFILE=Overview.linked.html
98
OUTPUTFILE=Overview.html
9+
10+
ISSUESOUTPUT=issues-wd-2013.html
11+
ISSUESINPUT=issues-wd-2013.txt
12+
1013
EXTERNALLINKS=perl external-spec-links.pl
1114
PREPROCESSOR=bikeshed.py
1215
REMOTE_PREPROCESSOR_URL=https://api.csswg.org/bikeshed/
@@ -23,3 +26,10 @@ else
2326
$(PREPROCESSOR) -f spec "$<" "$@"
2427
endif
2528

29+
issues: $(ISSUESOUTPUT)
30+
$(ISSUESOUTPUT) : $(ISSUESINPUT)
31+
ifneq (,$(REMOTE))
32+
curl $(REMOTE_PREPROCESSOR_URL) -F file=@$(ISSUESINPUT) -F input=issues > "$@"
33+
else
34+
$(PREPROCESSOR) -f issues "$<" "$@"
35+
endif

css-transforms/Overview.bs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Former Editor: David Hyatt, Apple Inc http://www.apple.com/, hyatt@apple.com
1818
Former Editor: Chris Marrin, Apple Inc http://www.apple.com/, cmarrin@apple.com
1919
Former Editor: Aryeh Gregor, Mozilla http://www.mozilla.org/, ayg@aryeh.name
2020
Abstract: CSS transforms allows elements styled with CSS to be transformed in two-dimensional space. This specification is the convergence of the <a href="https://www.w3.org/TR/css3-2d-transforms/">CSS 2D transforms</a> and <a href="https://www.w3.org/TR/2009/WD-SVG-Transforms-20090320/">SVG transforms</a> specifications.
21-
!Issues List: <a href="https://www.w3.org/Bugs/Public/buglist.cgi?query_format=advanced&product=CSS&component=Transforms&resolution=---&cmdtype=doit">in Bugzilla</a>
21+
!Issues List: <a href="https://github.com/w3c/csswg-drafts/issues?q=is%3Aissue+is%3Aopen+label%3Acss-transforms-1">in GitHub</a>
2222
Ignored terms: calcMode, viewBox, baseVal, animVal
2323
</pre>
2424

0 commit comments

Comments
 (0)