From 4e029518b4865fa9da58e6faad423074601027e6 Mon Sep 17 00:00:00 2001 From: Nishi Date: Sat, 23 Nov 2024 13:34:40 +0000 Subject: [PATCH] merge yakumo's patch git-svn-id: file:///raid/svn-personal/docgen/trunk@18 44bc13e5-44cb-984e-b856-1907bf1ada44 --- docgen | 14 ++++++++++++-- example/docgen.conf | 1 + 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/docgen b/docgen index 69a50aa..b2f18a3 100755 --- a/docgen +++ b/docgen @@ -1,7 +1,7 @@ #!/usr/bin/env tclsh # $Id$ -set DOCGEN_VERSION "1.03A" +set DOCGEN_VERSION "1.03B" set INPUT "docgen.conf" set dowhat "" set language "en" @@ -42,6 +42,7 @@ set icon_height 0 set footer "" set links "" set languages "" +set author "" source "$INPUT" @@ -79,6 +80,11 @@ if { "$language_overrode" == 1 } { set languages "" } +if { "$author" == "" } { + puts "Set author" + exit 1 +} + set genre_list {} puts "Docgen version $DOCGEN_VERSION" @@ -89,6 +95,8 @@ proc start_html {fid title toc dots} { puts $fid "" puts $fid " " puts $fid " " + puts $fid " " + puts $fid " " puts $fid " $title" puts $fid " " if { "$favicon" != "" } { @@ -123,7 +131,9 @@ proc end_html {fid} { puts $fid " " puts $fid " " puts $fid "
" - if { "$language" == "jp" } { + if { "$language" == "es" } { + puts $fid " Generado con Docgen $DOCGEN_VERSION
" + } elseif { "$language" == "jp" } { puts $fid " Docgen $DOCGEN_VERSIONを使用して生成
" } else { puts $fid " Generated using Docgen $DOCGEN_VERSION
" diff --git a/example/docgen.conf b/example/docgen.conf index 1e6b6f6..f56ca5c 100644 --- a/example/docgen.conf +++ b/example/docgen.conf @@ -9,3 +9,4 @@ set footer "Some good footer" set links "nishi.boats" set icon_height 96 set languages {jp en} +set author "Nishi" -- 2.43.0