Skip to content

Commit 2e6239c

Browse files
committed
creating skeleton for css-round-display
1 parent f6034a9 commit 2e6239c

2 files changed

Lines changed: 33 additions & 0 deletions

File tree

css-round-display/Makefile

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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.py
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
20+

css-round-display/Overview.bs

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<pre class='metadata'>
2+
Title: CSS Round Display Level 1
3+
Shortname: css-round-display
4+
Group: csswg
5+
Level: 1
6+
Status: ED
7+
ED: http://dev.w3.org/csswg/css-round-display/
8+
Editor: Hyojin Song, LG Electronics, hyojin22.song@lge.com
9+
Editor: Soonbo Han, LG Electronics, soonbo.han@lge.com
10+
Editor: Dong-Young Lee, LG Electronics, dongyoung.lee@lge.com
11+
Abstract: blah blah Round Displays blah blah
12+
</pre>
13+

0 commit comments

Comments
 (0)