summaryrefslogtreecommitdiff
path: root/lib/sbin/ThornGuide.pl
diff options
context:
space:
mode:
authorikelley <ikelley@17b73243-c579-4c4c-a9d2-2d5706c11dac>2002-05-29 10:29:56 +0000
committerikelley <ikelley@17b73243-c579-4c4c-a9d2-2d5706c11dac>2002-05-29 10:29:56 +0000
commit3a220821207be5326d82ad75e5da422fc2962c43 (patch)
treea1772adddc14fecf165867fa9800d55618e60f9c /lib/sbin/ThornGuide.pl
parent8c8d687be044f97299cce38fb59dc55ab126df68 (diff)
we do not want to warn when there is no documentation for a given arrangement
git-svn-id: http://svn.cactuscode.org/flesh/trunk@2862 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/sbin/ThornGuide.pl')
-rw-r--r--lib/sbin/ThornGuide.pl11
1 files changed, 7 insertions, 4 deletions
diff --git a/lib/sbin/ThornGuide.pl b/lib/sbin/ThornGuide.pl
index 2f426131..377119d4 100644
--- a/lib/sbin/ThornGuide.pl
+++ b/lib/sbin/ThornGuide.pl
@@ -118,7 +118,7 @@ foreach my $arrangement (sort keys %arrangements)
&Start_Arr($arrangement, $counter);
- print OUT &Read_Thorn_Doc($arrangements_dir, $arrangement);
+ print OUT &Read_Thorn_Doc($arrangements_dir, $arrangement, "donotshowwarnings");
# now each thorn in the given arrangement
foreach my $thorn (@{$arrangements{$arrangement}})
{
@@ -173,6 +173,7 @@ sub Read_Thorn_Doc
my $title = "";
my $author = "";
my $date = "";
+ my $cnts = "";
open (DOC, "<$pathandfile") || print STDERR "\nCould not find documentation in $path";
@@ -211,6 +212,7 @@ sub Read_Thorn_Doc
# if it never started reading, then we print some error message
if (! $start) {
+ if ($thorn ne "donotshowwarnings") {
my $tmp = ThornUtils::CleanForLatex("$arrangement/$thorn");
if (-e $pathandfile) {
@@ -221,11 +223,10 @@ sub Read_Thorn_Doc
$contents .= "\n\n\\include{${arrangement}\_${thorn}\_param}\n";
$contents .= "\n\\include{" . ThornUtils::ToLower("${arrangement}_${thorn}_inter") . "\}\n";
$contents .= "\n\\include{${arrangement}\_${thorn}\_schedule}\n";
+ }
}
- close DOC;
-
- my $cnts = "";
+ else {
$cnts .= "\n\{\\Large\n";
$cnts .= "\n\\begin\{tabbing\}\n";
$cnts .= "\n\{\\bf Author(s):\} \\= \\kill \\\\\n";
@@ -235,6 +236,8 @@ sub Read_Thorn_Doc
$cnts .= "\n\\end\{tabbing\}\n";
$cnts .= "\n\}\n";
$cnts .= "\n\\minitoc";
+ }
+ close DOC;
return "$cnts\n$contents";
}