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

Comparing cfmaps/cfupdate (file contents):
Revision 1.10 by root, Sun Nov 20 08:04:19 2005 UTC vs.
Revision 1.14 by root, Wed Nov 23 09:07:21 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.08
21 21
22umask 022 22umask 022
23 23
24SRC=/root/src/crossfire 24SRC=/root/src/crossfire
25PATH="$SRC:$PATH" 25PATH="$SRC:$PATH"
32 32
33rm -f .cfmap2html 33rm -f .cfmap2html
34 34
35chmod 644 "$SRC"/*.css 35chmod 644 "$SRC"/*.css
36cp "$SRC"/*.css . 36cp "$SRC"/*.css .
37chmod 755 "$SRC"/cfmapidx
38cp "$SRC"/cfmapidx .
37 39
38find . -name CVS -prune -o -type d -printf "%P/\n" | while read dir; do 40find . "(" -name CVS -o -path ./a ")" -prune -o -type d -printf "%P/\n" | while read dir; do
39 ( 41 (
40 export dir 42 export dir
41 cd "./$dir" || exit 68 43 cd "./$dir" || exit 68
42 { 44 {
43 cat >&7 <<-EOF 45 cat >&7 <<-EOF
44 <?xml version='1.0' encoding='utf-8'?> 46 <?xml version='1.0' encoding='utf-8'?>
45 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 47 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
46 <html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en'> 48 <html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en'>
47 <head> 49 <head>
48 <title>Crossfire Maps Directory "$dir"</title> 50 <title>Crossfire Maps Directory "$dir"</title>
49 <link rel='stylesheet' type='text/css' media='all' href='/common.css'/> 51 <link rel='stylesheet' type='text/css' media='all' href='/common.css'/>
50 </head> 52 </head>
53 <body>
54 <p>Keyword Search Over All Maps</p>
55 <p><form action='/search'>
56 <input type='text' name='k'/>
57 <input type='submit'/>
58 </form></p>
51 <body><h1>Crossfire Maps Directory "$dir"</h1><ul> 59 <h1>Crossfire Maps Directory "$dir"</h1><ul>
52 <li><a href='..'>&lt;parent&gt;</a></li></ul><h2>This Directory</h2><ul> 60 <li><a href='..'>&lt;parent&gt;</a></li></ul><h2>This Directory</h2><ul>
53 EOF 61 EOF
54 for file in *; do 62 for file in *; do
55 if [ -f "$file" ]; then 63 if [ -f "$file" ]; then
56 case "$file" in 64 case "$file" in
57 *.pst | *.jpg | *.png | *.html | *.html.gz | *.xhtml | *.xhtml.gz | *.css | *~ ) 65 cfmapidx | *.pst | *.jpg | *.png | *.html | *.html.gz | *.xhtml | *.xhtml.gz | *.css | *~ )
58 ;; 66 ;;
59 * ) 67 * )
60 if head -5 "$file" | grep -q "^arch map"; then 68 if head -5 "$file" | grep -q "^arch map"; then
61 echo >&7 "<li><a href='$file.xhtml'>$file</a> [map]</li>" 69 echo >&7 "<li><a href='$file.xhtml'>$file</a> [map]</li>"
62 DIR="${dir#/}" 70 DIR="${dir#/}"
92 </ul> 100 </ul>
93 <p class="footer">created by <a href='http://software.schmorp.de/#crossfire'>cfupdate</a> version $VERSION</p> 101 <p class="footer">created by <a href='http://software.schmorp.de/#crossfire'>cfupdate</a> version $VERSION</p>
94 EOF 102 EOF
95 echo >&7 "</body></html>" 103 echo >&7 "</body></html>"
96 } 7>index.xhtml 104 } 7>index.xhtml
97 gzip -7f index.xhtml 105 #gzip -7f index.xhtml
98 ) 106 )
99done 107done
100 108
101<.cfmap2html xargs cfmap2html 109<.cfmap2html xargs cfmap2html
110<.cfmap2html xargs cfmapidx -a
111cfmapidx -c
112mv .index.dat~ .index.dat
113
102rm -f .cfmap2html 114#rm -f .cfmap2html
103 115
104cfarch2html 116cfarch2html
105cfworldmap 117cfworldmap
106 118
107chown -R root.root . 119chown -R root.root .

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines