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

Comparing cfmaps/cfupdate (file contents):
Revision 1.12 by root, Tue Nov 22 17:19:20 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'?>
47 <!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'> 48 <html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en'>
46 <head> 49 <head>
47 <title>Crossfire Maps Directory "$dir"</title> 50 <title>Crossfire Maps Directory "$dir"</title>
48 <link rel='stylesheet' type='text/css' media='all' href='/common.css'/> 51 <link rel='stylesheet' type='text/css' media='all' href='/common.css'/>
49 </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>
50 <body><h1>Crossfire Maps Directory "$dir"</h1><ul> 59 <h1>Crossfire Maps Directory "$dir"</h1><ul>
51 <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>
52 EOF 61 EOF
53 for file in *; do 62 for file in *; do
54 if [ -f "$file" ]; then 63 if [ -f "$file" ]; then
55 case "$file" in 64 case "$file" in
56 *.pst | *.jpg | *.png | *.html | *.html.gz | *.xhtml | *.xhtml.gz | *.css | *~ ) 65 cfmapidx | *.pst | *.jpg | *.png | *.html | *.html.gz | *.xhtml | *.xhtml.gz | *.css | *~ )
57 ;; 66 ;;
58 * ) 67 * )
59 if head -5 "$file" | grep -q "^arch map"; then 68 if head -5 "$file" | grep -q "^arch map"; then
60 echo >&7 "<li><a href='$file.xhtml'>$file</a> [map]</li>" 69 echo >&7 "<li><a href='$file.xhtml'>$file</a> [map]</li>"
61 DIR="${dir#/}" 70 DIR="${dir#/}"
91 </ul> 100 </ul>
92 <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>
93 EOF 102 EOF
94 echo >&7 "</body></html>" 103 echo >&7 "</body></html>"
95 } 7>index.xhtml 104 } 7>index.xhtml
96 gzip -7f index.xhtml 105 #gzip -7f index.xhtml
97 ) 106 )
98done 107done
99 108
100<.cfmap2html xargs cfmap2html 109<.cfmap2html xargs cfmap2html
101<.cfmap2html xargs cfmapidx -a 110<.cfmap2html xargs cfmapidx -a

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines