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.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
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#/}"

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines