File: update_web_docs_libstdcxx_svn

package info (click to toggle)
ghdl 0.26%2Bsvn98%2Bgcc4.1.2~dfsg-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 93,808 kB
  • ctags: 63,866
  • sloc: ansic: 645,601; ada: 91,832; makefile: 36,755; asm: 23,240; sh: 16,722; cpp: 3,121; perl: 685; yacc: 593; lex: 589; awk: 586; exp: 526; pascal: 86; lisp: 59
file content (51 lines) | stat: -rwxr-xr-x 1,427 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/bin/sh


# "sh update_web_docs_libstdcxx.sh"
# Checks out a copy of the libstdc++-v3 "inner" documentation and puts
# it in the onlinedocs area.  For an initial description of "inner"
# docs, see the thread starting with 
#     http://gcc.gnu.org/ml/libstdc++/2000-11/msg00475.html
#
# Id: update_v3_web_docs.sh,v 1.4 2000/12/25 05:02:14 pedwards Exp
#####################################################################

SVNROOT=${SVNROOT:-"file:///svn/gcc"}
GETTHIS='libstdc++-v3/docs/html'
WWWDIR=/www/gcc/htdocs/onlinedocs/libstdc++
#WWWDIR=/tmp/fake-onlinedocs-testing


## No more changes should be needed.  Ha, right, whatever.
#####################################################################


PATH=/usr/local/bin:$PATH
export SVNROOT

test -d $WWWDIR || /bin/mkdir $WWWDIR
test -d $WWWDIR || { echo something is very wrong ; exit 1; }

WORKDIR=/tmp/v3-doc-update.$$
/bin/rm -rf $WORKDIR
/bin/mkdir $WORKDIR
cd $WORKDIR


# checkout all the HTML files, get down into an interesting directory
svn -q export $SVNROOT/trunk/$GETTHIS docs
cd docs
rm -f Makefile

# build a compressed copy of the HTML, preserve directory structure
for file in `find . -name "*.html" -print`; do
    gzip --best < $file > $file.gz
done

# copy the tree to the onlinedocs area, preserve directory structure
#find . -depth -print | cpio -pdv $WWWDIR
find . -depth -print | cpio -pd $WWWDIR > /dev/null 2>&1

cd /
/bin/rm -rf $WORKDIR