summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfukachan <fukachan>2003-07-28 14:10:19 +0000
committerfukachan <fukachan>2003-07-28 14:10:19 +0000
commitf8d6554e1a106438bb983c62b1458ad45870a5f0 (patch)
tree20ff5254181a179e9fd1b73f7538c0326f6f0de7
parent8768dbb6785b070e61a076c75fd45c03299352ad (diff)
downloadfml8-f8d6554e1a106438bb983c62b1458ad45870a5f0.tar.gz
fml8-f8d6554e1a106438bb983c62b1458ad45870a5f0.tar.bz2
fml8-f8d6554e1a106438bb983c62b1458ad45870a5f0.zip
create Documentation/??/text/CHANGES.txt.
modified links in the menu bar.
-rw-r--r--Makefile13
-rw-r--r--fml/doc/en/htdocs/menubar.html7
-rw-r--r--fml/doc/ja/htdocs/menubar.html7
-rwxr-xr-xfml/utils/bin/del_jaline.pl17
4 files changed, 36 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index 1eccf0ae..fb70070e 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
#
-# $FML: Makefile,v 1.23 2003/02/11 11:10:57 fukachan Exp $
+# $FML: Makefile,v 1.24 2003/07/24 23:25:47 fukachan Exp $
#
CONV = doc/bin/text2html.pl
@@ -26,10 +26,19 @@ update:
clean:
@ find . |grep '~' |perl -nple unlink
-doc: html
+doc: text html
html: _new_doc _html ja.doc en.doc
+text: gen_changes
+
+gen_changes:
+ test -d Documentation/ja/text || mkdir Documentation/ja/text
+ test -d Documentation/en/text || mkdir Documentation/en/text
+ - cp CHANGES.txt Documentation/ja/text
+ - fml/utils/bin/del_jaline.pl CHANGES.txt \
+ > Documentation/en/text/CHANGES.txt
+
_new_doc:
test -d Documentation/en/modules || mkdir Documentation/en/modules
-fml/utils/bin/pm2txt.pl fml/lib Documentation/en/modules
diff --git a/fml/doc/en/htdocs/menubar.html b/fml/doc/en/htdocs/menubar.html
index 370918b2..cd0f0182 100644
--- a/fml/doc/en/htdocs/menubar.html
+++ b/fml/doc/en/htdocs/menubar.html
@@ -23,8 +23,9 @@ fml-devel (fml 8) project menu
(J) = Japanese yet, sorry
<UL>
<LI>
- <A HREF="../../../../CHANGES.txt" TARGET="right">
- changes (include Japanese)
+ <A HREF="../../../../Documentation/en/text/CHANGES.txt"
+ TARGET="right">
+ changes
</A>
<LI>
@@ -149,7 +150,7 @@ fml-devel (fml 8) project menu
<IMG SRC="../../../../Documentation/ja/images/logo.jpg" ALIGN="center">
<PRE>
-$FML: menubar.html,v 1.6 2003/07/24 23:23:45 fukachan Exp $
+$FML: menubar.html,v 1.7 2003/07/26 09:05:42 fukachan Exp $
</PRE>
<!-- =================================================================== -->
diff --git a/fml/doc/ja/htdocs/menubar.html b/fml/doc/ja/htdocs/menubar.html
index 6b6b4ab4..050bddbf 100644
--- a/fml/doc/ja/htdocs/menubar.html
+++ b/fml/doc/ja/htdocs/menubar.html
@@ -21,7 +21,8 @@ fml-devel (fml 8) project menu
<UL>
<LI>
- <A HREF="../../../../CHANGES.txt" TARGET="right">
+ <A HREF="../../../../Documentation/ja/text/CHANGES.txt"
+ TARGET="right">
最近の変更点
</A>
@@ -37,7 +38,7 @@ fml-devel (fml 8) project menu
<LI>
<A HREF="../../../../Documentation/ja/tutorial/index.html"
TARGET="right">
- fml 8 チュートリアル
+ チュートリアル
</A>
<LI>
@@ -162,7 +163,7 @@ fml-devel (fml 8) project menu
<IMG SRC="../../../../Documentation/ja/images/logo.jpg" ALIGN="center">
<PRE>
-$FML: menubar.html,v 1.23 2003/06/01 13:08:23 fukachan Exp $
+$FML: menubar.html,v 1.24 2003/07/26 09:05:07 fukachan Exp $
</PRE>
<!-- =================================================================== -->
diff --git a/fml/utils/bin/del_jaline.pl b/fml/utils/bin/del_jaline.pl
new file mode 100755
index 00000000..7ce4fcdb
--- /dev/null
+++ b/fml/utils/bin/del_jaline.pl
@@ -0,0 +1,17 @@
+#!/usr/bin/env perl
+#-*- perl -*-
+#
+# Copyright (C) 2000,2003 Ken'ichi Fukamachi
+# All rights reserved.
+#
+# $FML$
+#
+
+my $re_euc_c = '[\241-\376][\241-\376]';
+
+while (<>) {
+ next if /$re_euc_c/;
+ print;
+}
+
+exit 0;