Skip to content

Commit 79f7f76

Browse files
committed
renamed all REPs from .txt to .rst, removed obsolete stuff, moved REP attachments to subfolders, updated doc to reference new github repo
1 parent 865c2e2 commit 79f7f76

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+60
-1187
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
rep-0000.rst
2+
*.html
3+
*.pyc

Makefile

+12-22
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,30 @@
1-
# Rules to only make the required HTML versions, not all of them,
2-
# without the user having to keep track of which.
3-
#
4-
# Not really important, but convenient.
1+
# targets to generate an index, HTML files and upload them to the server
52

63
REP2HTML=rep2html.py
74

85
PYTHON=python
96

10-
.SUFFIXES: .txt .html
7+
.SUFFIXES: .rst .html
118

12-
.txt.html:
9+
.rst.html:
1310
@$(PYTHON) $(REP2HTML) $<
1411

15-
REPS=$(filter-out rep-0000.txt,$(wildcard rep-????.txt))
12+
REPS=$(filter-out rep-0000.rst,$(wildcard rep-????.rst))
1613

17-
TARGETS=$(REPS:.txt=.html) rep-0000.html
14+
SUBDIRS=$(wildcard rep-????)
1815

19-
all: rep-0000.txt $(TARGETS)
16+
TARGETS=$(REPS:.rst=.html) rep-0000.html
2017

21-
$(TARGETS) rep-0000.html1: rep2html.py
18+
all: rep-0000.rst $(TARGETS)
2219

23-
rep-0000.txt: $(REPS)
24-
$(PYTHON) genrepindex.py .
20+
$(TARGETS): rep2html.py
2521

26-
install:
27-
echo "Installing is not necessary anymore. It will be done in post-commit."
22+
rep-0000.rst: $(REPS)
23+
$(PYTHON) genrepindex.py .
2824

2925
clean:
3026
-rm *.html
31-
-rm rep-0000.txt
32-
33-
update:
34-
svn update
35-
36-
propcheck:
37-
$(PYTHON) propcheck.py
27+
-rm rep-0000.rst
3828

3929
upload: all
40-
rsync *.txt *.html *.jpg *.png [email protected]:/var/www/www.ros.org/html/reps
30+
rsync -r *.html rep.css style.css rep-0000.rst $(SUBDIRS) [email protected]:/var/www/www.ros.org/html/reps/new

0 commit comments

Comments
 (0)