summaryrefslogtreecommitdiff
path: root/fml
diff options
context:
space:
mode:
authorfukachan <fukachan>2001-03-13 17:23:04 +0000
committerfukachan <fukachan>2001-03-13 17:23:04 +0000
commit2928c800c7a24959326e2fe91e6d93627ca95a18 (patch)
tree2b64b69c4e7a10b66b08876536bdfe7587a7e704 /fml
parent4d39d97fd47029cb61af0ba65d37159d09110fdb (diff)
downloadfml8-2928c800c7a24959326e2fe91e6d93627ca95a18.tar.gz
fml8-2928c800c7a24959326e2fe91e6d93627ca95a18.tar.bz2
fml8-2928c800c7a24959326e2fe91e6d93627ca95a18.zip
fix dependence, fix typo
Diffstat (limited to 'fml')
-rw-r--r--fml/doc/menubar.ja.html2
-rw-r--r--fml/doc/refactoring.ja.html2
-rw-r--r--fml/etc/Makefile8
-rw-r--r--fml/etc/defaults/naming_convention.ja.html55
-rw-r--r--fml/etc/index.html2
-rw-r--r--fml/lib/Dialect/Japanese/Makefile2
-rw-r--r--fml/lib/Dialect/Makefile4
-rw-r--r--fml/lib/ErrorMessages/Makefile2
-rw-r--r--fml/lib/FML/Makefile7
-rw-r--r--fml/lib/FML/index.ja.html7
-rw-r--r--fml/lib/File/Makefile2
-rw-r--r--fml/lib/IO/Adapter/index.ja.html5
-rw-r--r--fml/lib/IO/Makefile2
-rw-r--r--fml/lib/MailingList/Makefile2
-rw-r--r--fml/lib/Makefile8
-rw-r--r--fml/lib/Tie/Makefile2
-rw-r--r--fml/libexec/Makefile4
17 files changed, 94 insertions, 22 deletions
diff --git a/fml/doc/menubar.ja.html b/fml/doc/menubar.ja.html
index 3f82aac7..89744667 100644
--- a/fml/doc/menubar.ja.html
+++ b/fml/doc/menubar.ja.html
@@ -64,7 +64,7 @@ fml5 (仮称) documents メニュー
<LI>
変数
<BR>
- <A HREF="../etc/defaults/naming_conventin.ja.html" TARGET="right">
+ <A HREF="../etc/defaults/naming_convention.ja.html" TARGET="right">
命名規則
</A>
<BR>
diff --git a/fml/doc/refactoring.ja.html b/fml/doc/refactoring.ja.html
index 17c821bd..319a26cd 100644
--- a/fml/doc/refactoring.ja.html
+++ b/fml/doc/refactoring.ja.html
@@ -80,7 +80,7 @@ fml5 [ fml リファクトリング プロジェクト (Refactroing Project) ]
<TD>
<TD>
<EM>
- <A HREF="../etc/defaults/naming_conventin.ja.html">
+ <A HREF="../etc/defaults/naming_convention.ja.html">
変数の命名規則
</A>
</EM>
diff --git a/fml/etc/Makefile b/fml/etc/Makefile
index 79c86a09..5b8b6b32 100644
--- a/fml/etc/Makefile
+++ b/fml/etc/Makefile
@@ -5,6 +5,10 @@ all: default_config.cf.ja html
default_config.cf.ja: defaults/*
sh .gen.sh
-html:
- $(CONV) defaults/NAMING_CONVENTION.txt > defaults/naming_conventin.ja.html
+html: defaults/naming_convention.ja.html defaults/variablelist.ja.html
+
+defaults/naming_convention.ja.html: defaults/*cf* defaults/Configurations
+ $(CONV) defaults/NAMING_CONVENTION.txt > defaults/naming_convention.ja.html
+
+defaults/variablelist.ja.html: defaults/*cf* defaults/Configurations
$(CONV) default_config.cf.ja > defaults/variablelist.ja.html
diff --git a/fml/etc/defaults/naming_convention.ja.html b/fml/etc/defaults/naming_convention.ja.html
new file mode 100644
index 00000000..e4df2c5a
--- /dev/null
+++ b/fml/etc/defaults/naming_convention.ja.html
@@ -0,0 +1,55 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<HTML>
+<HEAD>
+<TITLE>
+defaults/NAMING_CONVENTION.txt
+</TITLE>
+<META http-equiv="Content-Type"
+ content="text/html; charset=EUC-JP">
+</HEAD>
+
+<BODY BGCOLOR="#E6E6FA">
+<PRE>
+ 変数名の命名規則
+
+○ 標準パターン (例 log.cf lock.cf)
+
+use_変数 = yes/no
+
+# ディレクトリなら最後に _dir がつくことが望ましい
+変数_dir = 文字列
+
+# ファイルなら最後に _file がつくことが望ましい
+変数_file = 文字列
+
+変数_type = 文字列
+
+変数_format = 文字列
+
+変数_format_type = 文字列
+
+変数_limit = 文字列(数字だけど文字列扱い)
+
+変数_upper_limit = 文字列(数字だけど文字列扱い)
+
+変数_lower_limit = 文字列(数字だけど文字列扱い)
+
+
+
+○ パターン2 (例 acl.cf )
+
+変数_restrictions = reject_属性
+ permit_なんとか
+
+属性 = パターン1
+ パターン2
+ …
+
+
+○ パターン3 (さらにプログラム名がつく場合)
+
+プログラム_変数_属性
+
+</PRE>
+</BODY>
+</HTML>
diff --git a/fml/etc/index.html b/fml/etc/index.html
index ae87e2bf..28fa0c53 100644
--- a/fml/etc/index.html
+++ b/fml/etc/index.html
@@ -13,7 +13,7 @@ fml5 (仮名) プロジェクトの目的
<UL>
<LI>
- <A HREF="defaults/naming_conventin.ja.html">変数の命名規則</A>
+ <A HREF="defaults/naming_convention.ja.html">変数の命名規則</A>
<LI>
<A HREF="defaults/variablelist.ja.html">変数一覧</A>
diff --git a/fml/lib/Dialect/Japanese/Makefile b/fml/lib/Dialect/Japanese/Makefile
index 795737fa..4ed76816 100644
--- a/fml/lib/Dialect/Japanese/Makefile
+++ b/fml/lib/Dialect/Japanese/Makefile
@@ -2,5 +2,5 @@ all: html
html: index.ja.html
-index.ja.html: *pm
+index.ja.html: *.pm
../../../../doc/bin/dir2url.pl > index.ja.html
diff --git a/fml/lib/Dialect/Makefile b/fml/lib/Dialect/Makefile
index 6d16ee00..2347ea49 100644
--- a/fml/lib/Dialect/Makefile
+++ b/fml/lib/Dialect/Makefile
@@ -3,9 +3,9 @@ all: anal
anal:
@ find . | sort | grep -v CVS | sed 's@./@@'
-html: _clean index.ja.html
+html: index.ja.html
-index.ja.html: *.pm
+index.ja.html: *.pm Japanese/*.pm
(cd Japanese; make html)
../../../doc/bin/dir2url.pl > index.ja.html
diff --git a/fml/lib/ErrorMessages/Makefile b/fml/lib/ErrorMessages/Makefile
index 28fd7012..2eadbd96 100644
--- a/fml/lib/ErrorMessages/Makefile
+++ b/fml/lib/ErrorMessages/Makefile
@@ -3,7 +3,7 @@ all: anal
anal:
@ find . | sort | grep -v CVS | sed 's@./@@'
-html: _clean index.ja.html
+html: index.ja.html
index.ja.html: *.pm
../../../doc/bin/dir2url.pl > index.ja.html
diff --git a/fml/lib/FML/Makefile b/fml/lib/FML/Makefile
index 4d179ed7..7cd31519 100644
--- a/fml/lib/FML/Makefile
+++ b/fml/lib/FML/Makefile
@@ -3,14 +3,13 @@ all: anal
anal:
@ find . | sort | grep -v CVS | sed 's@./@@'
-html: _clean index.ja.html
-
-index.ja.html: *.pm
+html: index.ja.html
(cd Header; make html)
(cd Process; make html)
- (cd Ticket/Model; make html)
(cd Ticket; make html)
(cd CGI; make html)
+
+index.ja.html: *.pm [A-Z]*
../../../doc/bin/dir2url.pl > index.ja.html
_clean:
diff --git a/fml/lib/FML/index.ja.html b/fml/lib/FML/index.ja.html
index aee78732..8dd83462 100644
--- a/fml/lib/FML/index.ja.html
+++ b/fml/lib/FML/index.ja.html
@@ -93,6 +93,13 @@ Command/
<TD>
<TR>
<TD>
+ MemberControl.pm <TD>
+<A HREF="MemberControl.pm">[source]</A>
+<TD>
+<A HREF="@@doc/MemberControl.txt">[manual]</A>
+<TD>
+<TR>
+<TD>
Messages.pm <TD>
<A HREF="Messages.pm">[source]</A>
<TD>
diff --git a/fml/lib/File/Makefile b/fml/lib/File/Makefile
index 28fd7012..2eadbd96 100644
--- a/fml/lib/File/Makefile
+++ b/fml/lib/File/Makefile
@@ -3,7 +3,7 @@ all: anal
anal:
@ find . | sort | grep -v CVS | sed 's@./@@'
-html: _clean index.ja.html
+html: index.ja.html
index.ja.html: *.pm
../../../doc/bin/dir2url.pl > index.ja.html
diff --git a/fml/lib/IO/Adapter/index.ja.html b/fml/lib/IO/Adapter/index.ja.html
index f97e72ac..1bdbd31c 100644
--- a/fml/lib/IO/Adapter/index.ja.html
+++ b/fml/lib/IO/Adapter/index.ja.html
@@ -35,6 +35,9 @@ IO/Adapter::* classes
<TD>
<TR>
<TD>
+MySQL/
+<TR>
+<TD>
NIS.pm <TD>
<A HREF="NIS.pm">[source]</A>
<TD>
@@ -57,3 +60,5 @@ IO/Adapter::* classes
</TABLE>
</BODY>
</HTML>
+*** warning ***
+Error: *** fail to convert MySQL ***
diff --git a/fml/lib/IO/Makefile b/fml/lib/IO/Makefile
index f112eb47..7267e55a 100644
--- a/fml/lib/IO/Makefile
+++ b/fml/lib/IO/Makefile
@@ -3,7 +3,7 @@ all: anal
anal:
@ find . | sort | grep -v CVS | sed 's@./@@'
-html: _clean index.ja.html
+html: index.ja.html
index.ja.html: *.pm
(cd File; make html)
diff --git a/fml/lib/MailingList/Makefile b/fml/lib/MailingList/Makefile
index 1e81e217..67ad8d35 100644
--- a/fml/lib/MailingList/Makefile
+++ b/fml/lib/MailingList/Makefile
@@ -3,7 +3,7 @@ all: anal
anal:
@ find . | sort | grep -v CVS | sed 's@./@@'
-html: _clean index.ja.html
+html: index.ja.html
index.ja.html: *.pm
(cd Net; make html)
diff --git a/fml/lib/Makefile b/fml/lib/Makefile
index 2f53eac3..2f6bfef1 100644
--- a/fml/lib/Makefile
+++ b/fml/lib/Makefile
@@ -1,8 +1,11 @@
all: html
-html: _clean index.ja.html
+html: _subdir index.ja.html
-index.ja.html: *.pm
+index.ja.html: [A-Z]*
+ ../../doc/bin/dir2url.pl > index.ja.html
+
+_subdir: [A-Z]*
(cd Dialect; make html)
(cd FML; make html)
(cd File; make html)
@@ -10,7 +13,6 @@ index.ja.html: *.pm
(cd MailingList; make html)
(cd Tie; make html)
(cd ErrorMessages; make html)
- ../../doc/bin/dir2url.pl > index.ja.html
_clean:
rm -f index.ja.html */index.ja.html
diff --git a/fml/lib/Tie/Makefile b/fml/lib/Tie/Makefile
index 28fd7012..2eadbd96 100644
--- a/fml/lib/Tie/Makefile
+++ b/fml/lib/Tie/Makefile
@@ -3,7 +3,7 @@ all: anal
anal:
@ find . | sort | grep -v CVS | sed 's@./@@'
-html: _clean index.ja.html
+html: index.ja.html
index.ja.html: *.pm
../../../doc/bin/dir2url.pl > index.ja.html
diff --git a/fml/libexec/Makefile b/fml/libexec/Makefile
index 441df182..38c66e21 100644
--- a/fml/libexec/Makefile
+++ b/fml/libexec/Makefile
@@ -3,9 +3,9 @@ all: anal
anal:
@ find . | sort | grep -v CVS | sed 's@./@@'
-html: _clean index.ja.html
+html: index.ja.html
-index.ja.html: *.pm
+index.ja.html: *.pm loader
../../doc/bin/dir2url.pl > index.ja.html
_clean: