summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfukachan <fukachan>2001-01-24 03:23:41 +0000
committerfukachan <fukachan>2001-01-24 03:23:41 +0000
commit6ea3560eecd1b18afecd4c2d6863e80b56ab36ee (patch)
tree0a33a4996a0d141c1e389b6d88742ce57d00e09a
parentdc533257940c9d31841a95aa22635eca67b04cf6 (diff)
downloadfml8-6ea3560eecd1b18afecd4c2d6863e80b56ab36ee.tar.gz
fml8-6ea3560eecd1b18afecd4c2d6863e80b56ab36ee.tar.bz2
fml8-6ea3560eecd1b18afecd4c2d6863e80b56ab36ee.zip
move to doc/bin/
-rwxr-xr-xregress/dir2url65
1 files changed, 0 insertions, 65 deletions
diff --git a/regress/dir2url b/regress/dir2url
deleted file mode 100755
index bef94fc4..00000000
--- a/regress/dir2url
+++ /dev/null
@@ -1,65 +0,0 @@
-#!/bin/sh
-#
-# $Id$
-#
-
-HEADER () {
-cat <<'_EOF'
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
-<HTML>
-<HEAD>
-<TITLE>
-fml5 homepage menubar
-</TITLE>
-<META http-equiv="Content-Type"
- content="text/html; charset=EUC-JP">
-</HEAD>
-
-<BODY BGCOLOR="#E6E6FA">
-_EOF
-}
-
-FOOTER () {
-cat <<'_EOF'
-</BODY>
-</HTML>
-_EOF
-}
-
-
-SHOW () {
- echo "<UL>"
- for x in *[a-z0-9A-Z]
- do
- if [ "X$x" = XCVS ]; then continue; fi
- if [ "X$x" = Xindex.ja.html ]; then continue; fi
- if [ "X$x" = Xindex.en.html ]; then continue; fi
- if [ "X$x" = Xindex.html ]; then continue; fi
-
- echo " <LI>";
- if [ -d $x ];then
- if [ -f $x/index.ja.html ];then
- echo " <A HREF=$x/index.ja.html>$x::</A>"
- else
- echo " $x ";
- if [ -f $x/README ];then
- echo " <A HREF=$x/README>README</A>"
- fi
- if [ -f $x/INSTALL ];then
- echo " <A HREF=$x/INSTALL>INSTALL</A>"
- fi
- fi
- else
- echo " $x"
- fi
- echo ""
- done
- echo "</UL>"
-}
-
-
-HEADER
-SHOW
-FOOTER
-
-exit 0;