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

Comparing cfmaps/cfupdate (file contents):
Revision 1.11 by root, Sun Nov 20 20:37:13 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
44 <?xml version='1.0' encoding='utf-8'?> 51 <?xml version='1.0' encoding='utf-8'?>
52 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
45 <html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en'> 53 <html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en'>
46 <head> 54 <head>
47 <title>Crossfire Maps Directory "$dir"</title> 55 <title>Crossfire Maps Directory "$dir"</title>
48 <link rel='stylesheet' type='text/css' media='all' href='/common.css'/> 56 <link rel='stylesheet' type='text/css' media='all' href='/common.css'/>
49 </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>
50 <body><h1>Crossfire Maps Directory "$dir"</h1><ul> 64 <h1>Crossfire Maps Directory "$dir"</h1><ul>
51 <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>
52 EOF 66 EOF
53 for file in *; do 67 for file in *; do
54 if [ -f "$file" ]; then 68 if [ -f "$file" ]; then
55 case "$file" in 69 case "$file" in
56 *.pst | *.jpg | *.png | *.html | *.html.gz | *.xhtml | *.xhtml.gz | *.css | *~ ) 70 cfmapidx | *.pst | *.jpg | *.png | *.html | *.html.gz | *.xhtml | *.xhtml.gz | *.css | *~ )
57 ;; 71 ;;
58 * ) 72 * )
59 if head -5 "$file" | grep -q "^arch map"; then 73 if head -5 "$file" | grep -q "^arch map"; then
60 echo >&7 "<li><a href='$file.xhtml'>$file</a> [map]</li>" 74 echo >&7 "<li><a href='$file.xhtml'>$file</a> [map]</li>"
61 DIR="${dir#/}" 75 DIR="${dir#/}"
91 </ul> 105 </ul>
92 <p class="footer">created by <a href='http://software.schmorp.de/#crossfire'>cfupdate</a> version $VERSION</p> 106 <p class="footer">created by <a href='http://software.schmorp.de/#crossfire'>cfupdate</a> version $VERSION</p>
93 EOF 107 EOF
94 echo >&7 "</body></html>" 108 echo >&7 "</body></html>"
95 } 7>index.xhtml 109 } 7>index.xhtml
96 gzip -7f index.xhtml 110 #gzip -7f index.xhtml
97 ) 111 )
98done 112done
99 113
100<.cfmap2html xargs cfmap2html 114<.cfmap2html xargs cfmap2html
115<.cfmap2html xargs cfmapidx -a
116mv .index.dat~ .index.dat
117
101rm -f .cfmap2html 118#rm -f .cfmap2html
102 119
103cfarch2html 120cfarch2html
104cfworldmap 121cfworldmap
105 122
106chown -R root.root . 123chown -R root.root .

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines