[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

gallery/in-Action/mkact.pl



gallery/in-Action/ 以下ですが、
現在は、 *-{txt,img}.html が全部そろっていないと
index.html が生成できないようになっています。

で、 *-txt.html の翻訳がなかなかできないので、
index.html が古いままなのですが、
翻訳がないときは原文を使うようにしてしまっていいですか。

異義がなければ、そのように作業します。

Index: mkact.pl
===================================================================
RCS file: /cvsroot/htdocs/ja/gallery/in-Action/mkact.pl,v
retrieving revision 1.3
diff -u -r1.3 mkact.pl
--- mkact.pl	13 Feb 2005 12:58:11 -0000	1.3
+++ mkact.pl	27 Dec 2005 14:59:10 -0000
@@ -14,6 +14,9 @@
 
 sub printfile {
     local($file)=@_;
+    if ( ! -f $file && -f "../../../gallery/in-Action/$file" ) {
+	$file = "../../../gallery/in-Action/$file";
+    }
     open(F, "nkf -e $file|") or die "Cannot open $file for reading: $!\n";
     while(<F>) {
 	s/<!--.*//g;