Skip to content

Commit

Permalink
Reorg and clean up repo
Browse files Browse the repository at this point in the history
  • Loading branch information
juberti committed Oct 15, 2015
1 parent 4bd6b30 commit afedd3a
Show file tree
Hide file tree
Showing 8 changed files with 90 additions and 2,249 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,9 @@ draughts
========

Various Internet-Drafts:
* fec: draft-uberti-rtcweb-fec, describing use of FEC in WebRTC
* vp9: draft-uberti-payload-vp9, describing VP9 packetization
* fec: draft-ietf-rtcweb-fec, describing use of FEC in WebRTC
* vp9: draft-ietf-payload-vp9, describing VP9 packetization
* lrr: draft-ietf-avtext-lrr, describing a new RTCP feedback message for layer refreshes
* nombis: draft-uberti-mmusic-nombis, describing 'passive-aggressive' and 'continuous' ICE nomination
* turn-rest: draft-uberti-behave-turn-rest, for obtaining TURN credentials; obsoleted by RFC 7635

42 changes: 42 additions & 0 deletions fec/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@


SRC := $(wildcard draft-*.xml)
WSRC := $(wildcard *.wsd)

HTML := $(patsubst %.xml,%.html,$(SRC))
TXT := $(patsubst %.xml,%.txt,$(SRC))
DIF := #$(patsubst %.xml,%.diff.html,$(SRC))
PDF := #$(patsubst %.xml,%.pdf,$(SRC))
SVG := #$(patsubst %.wsd,%.svg,$(WSRC))

all: $(HTML) $(TXT)
# $(DIF) $(PDF)
#all: $(HTML) $(TXT) $(DIF) $(SVG) $(PDF)

clean:
rm -f *~ draft*.html draft*pdf draft-*txt $(SVG)

#%.html: %.xml
# xsltproc -o $@ rfc2629.xslt $^

%.html: %.xml
xml2rfc --html $^ -o $@


%.txt: %.xml
xml2rfc --text $^ -o $@

%.diff.html: %.txt.old %.txt
htmlwdiff $^ > $@

%.pdf: %.html $(SVG)
wkpdf -p letter -s $^ -o $@

%.svg: %.wsd
node ~/bin/ladder.js $^ $@

%.png: %.svg
java -jar batik-rasterizer.jar $^ -d $@ -bg 255.255.255.255



File renamed without changes.
42 changes: 42 additions & 0 deletions nombis/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@


SRC := $(wildcard draft-*.xml)
WSRC := $(wildcard *.wsd)

HTML := $(patsubst %.xml,%.html,$(SRC))
TXT := $(patsubst %.xml,%.txt,$(SRC))
DIF := #$(patsubst %.xml,%.diff.html,$(SRC))
PDF := #$(patsubst %.xml,%.pdf,$(SRC))
SVG := #$(patsubst %.wsd,%.svg,$(WSRC))

all: $(HTML) $(TXT)
# $(DIF) $(PDF)
#all: $(HTML) $(TXT) $(DIF) $(SVG) $(PDF)

clean:
rm -f *~ draft*.html draft*pdf draft-*txt $(SVG)

#%.html: %.xml
# xsltproc -o $@ rfc2629.xslt $^

%.html: %.xml
xml2rfc --html $^ -o $@


%.txt: %.xml
xml2rfc --text $^ -o $@

%.diff.html: %.txt.old %.txt
htmlwdiff $^ > $@

%.pdf: %.html $(SVG)
wkpdf -p letter -s $^ -o $@

%.svg: %.wsd
node ~/bin/ladder.js $^ $@

%.png: %.svg
java -jar batik-rasterizer.jar $^ -d $@ -bg 255.255.255.255



File renamed without changes.
File renamed without changes.
Loading

0 comments on commit afedd3a

Please sign in to comment.