Skip to content

Commit abb7241

Browse files
committed
[css-viewport] Move device-adapt to css-viewport.
As per w3c#7590
1 parent 122d114 commit abb7241

File tree

2 files changed

+25
-5
lines changed

2 files changed

+25
-5
lines changed

css-viewport/Makefile

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# $Id: Makefile,v 1.5 2008/02/06 14:05:15 mike Exp $
2+
#
3+
# FIXME: New documentation needed.
4+
#
5+
# Use "make REMOTE=1" to use remote bikeshed
6+
7+
SOURCEFILE=Overview.bs
8+
OUTPUTFILE=Overview.html
9+
PREPROCESSOR=bikeshed
10+
REMOTE_PREPROCESSOR_URL=https://api.csswg.org/bikeshed/
11+
12+
all: $(OUTPUTFILE)
13+
14+
$(OUTPUTFILE): $(SOURCEFILE)
15+
ifneq (,$(REMOTE))
16+
curl $(REMOTE_PREPROCESSOR_URL) -F file=@$(SOURCEFILE) > "$@"
17+
else
18+
$(PREPROCESSOR) -f spec "$<" "$@"
19+
endif

css-device-adapt-1/Overview.bs renamed to css-viewport/Overview.bs

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
11
<pre class="metadata">
2-
Title: CSS Device Adaptation Module Level 1
2+
Title: CSS Viewport Module Level 1
33
Level: 1
4-
Shortname: css-device-adapt
4+
Shortname: css-viewport
55
Group: CSSWG
66
Status: ED
77
Work Status: Exploring
8-
TR: http://www.w3.org/TR/css-device-adapt-1/
9-
ED: https://drafts.csswg.org/css-device-adapt/
8+
TR: http://www.w3.org/TR/css-viewport-1/
9+
ED: https://drafts.csswg.org/css-viewport/
1010
Previous Version: http://www.w3.org/TR/2016/WD-css-device-adapt-1-20160329/
1111
Editor: Florian Rivoal, Invited Expert, https://florian.rivoal.net, w3cid 43241
1212
Editor: Matt Rakow, Microsoft, w3cid 62267
13+
Editor: Emilio Cobos Álvarez, Mozilla, emilio@mozilla.com, w3cid 106537
1314
Former Editor: Rune Lillesveen, Opera Software, rune@opera.com
1415
Former Editor: Ryan Betts, Adobe Systems, rbetts@adobe.com
1516
Former Editor: Øyvind Stenhaug, Opera Software, oyvinds@opera.com
1617
Abstract: This specification provides a way for an author to specify, in CSS, the size, zoom factor, and orientation of the viewport that is used as the base for the initial containing block.
17-
Issue Tracking: Bugzilla https://www.w3.org/Bugs/Public/buglist.cgi?component=Device%20Adaptation&list_id=52675&product=CSS&resolution=---
18+
Issue Tracking: CSSWG GitHub https://github.com/w3c/csswg-drafts/labels/css-viewport-1
1819
Ignored Vars: <viewport-length>
1920
</pre>
2021

0 commit comments

Comments
 (0)