ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/cfmaps/cfupdate
(Generate patch)

Comparing cfmaps/cfupdate (file contents):
Revision 1.13 by root, Tue Nov 22 17:54:41 2005 UTC vs.
Revision 1.17 by root, Mon Dec 12 01:38:19 2005 UTC

15# 15#
16# You should have received a copy of the GNU General Public License 16# You should have received a copy of the GNU General Public License
17# along with gvpe; if not, write to the Free Software 17# along with gvpe; if not, write to the Free Software
18# Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 18# Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 19
20VERSION=1.06 20VERSION=1.11
21 21
22umask 022 22umask 022
23 23
24SRC=/root/src/crossfire 24SRC=/root/src/crossfire
25PATH="$SRC:$PATH" 25PATH="$SRC:$PATH"
28 28
29cd "$BASE" || exit 69 29cd "$BASE" || exit 69
30 30
31cvs -Q -z3 update -AdP | grep -v ^\\? 31cvs -Q -z3 update -AdP | grep -v ^\\?
32 32
33wget -qm http://www.eracc.com/mlab/mlab-devel.tar.gz
34tar xzpf www.eracc.com/mlab/mlab-devel.tar.gz
35chown -R root.root mlab-devel
36chmod -R u=rwX,go=rX mlab-devel
37
33rm -f .cfmap2html 38rm -f .cfmap2html
34 39
35chmod 644 "$SRC"/*.css 40chmod 644 "$SRC"/*.css
36cp "$SRC"/*.css . 41cp "$SRC"/*.css .
42chmod 755 "$SRC"/cfmapidx
43cp "$SRC"/cfmapidx .
37 44
38find . -name CVS -prune -o -type d -printf "%P/\n" | while read dir; do 45find . "(" -name CVS -o -path ./a ")" -prune -o -type d -printf "%P/\n" | while read dir; do
39 ( 46 (
40 export dir 47 export dir
41 cd "./$dir" || exit 68 48 cd "./$dir" || exit 68
42 { 49 {
43 cat >&7 <<-EOF 50 cat >&7 <<-EOF
46 <html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en'> 53 <html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en'>
47 <head> 54 <head>
48 <title>Crossfire Maps Directory "$dir"</title> 55 <title>Crossfire Maps Directory "$dir"</title>
49 <link rel='stylesheet' type='text/css' media='all' href='/common.css'/> 56 <link rel='stylesheet' type='text/css' media='all' href='/common.css'/>
50 </head> 57 </head>
58 <body>
59 <p>Keyword Search Over All Maps</p>
60 <p><form action='/search'>
61 <input type='text' name='k'/>
62 <input type='submit'/>
63 </form></p>
51 <body><h1>Crossfire Maps Directory "$dir"</h1><ul> 64 <h1>Crossfire Maps Directory "$dir"</h1><ul>
52 <li><a href='..'>&lt;parent&gt;</a></li></ul><h2>This Directory</h2><ul> 65 <li><a href='..'>&lt;parent&gt;</a></li></ul><h2>This Directory</h2><ul>
53 EOF 66 EOF
54 for file in *; do 67 for file in *; do
55 if [ -f "$file" ]; then 68 if [ -f "$file" ]; then
56 case "$file" in 69 case "$file" in
57 *.pst | *.jpg | *.png | *.html | *.html.gz | *.xhtml | *.xhtml.gz | *.css | *~ ) 70 cfmapidx | *.pst | *.jpg | *.png | *.html | *.html.gz | *.xhtml | *.xhtml.gz | *.css | *~ )
58 ;; 71 ;;
59 * ) 72 * )
60 if head -5 "$file" | grep -q "^arch map"; then 73 if head -5 "$file" | grep -q "^arch map"; then
61 echo >&7 "<li><a href='$file.xhtml'>$file</a> [map]</li>" 74 echo >&7 "<li><a href='$file.xhtml'>$file</a> [map]</li>"
62 DIR="${dir#/}" 75 DIR="${dir#/}"
98 ) 111 )
99done 112done
100 113
101<.cfmap2html xargs cfmap2html 114<.cfmap2html xargs cfmap2html
102<.cfmap2html xargs cfmapidx -a 115<.cfmap2html xargs cfmapidx -a
103cfmapidx -c
104mv .index.dat~ .index.dat 116mv .index.dat~ .index.dat
105 117
106#rm -f .cfmap2html 118#rm -f .cfmap2html
107 119
108cfarch2html 120cfarch2html

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines