jfclere 01/07/04 09:45:14 Modified: scandoc template.pl Log: Fix the == to eq (PERL needs eq for strings). Revision Changes Path 1.5 +7 -7 jakarta-tomcat-connectors/scandoc/template.pl Index: template.pl =================================================================== RCS file: /home/cvs/jakarta-tomcat-connectors/scandoc/template.pl,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- template.pl 2001/04/24 20:19:58 1.4 +++ template.pl 2001/07/04 16:45:13 1.5 @@ -10,13 +10,13 @@ ############################################################################### ## Defaults for look and feel -if ($project == "") { $project = "WebApp Library"; } -if ($copyright == "") { $copyright = "2001, The Apache Software Foundation"; } -if ($body_bgcolor == "") { $body_bgcolor = '#ffffff'; } -if ($body_text == "") { $body_text = '#000000'; } -if ($body_link == "") { $body_link = '#0000ff'; } -if ($body_vlink == "") { $body_vlink = '#0000ff'; } -if ($body_alink == "") { $body_alink = '#0000ff'; } +if ($project eq "") { $project = "WebApp Library"; } +if ($copyright eq "") { $copyright = "2001, The Apache Software Foundation"; } +if ($body_bgcolor eq "") { $body_bgcolor = '#ffffff'; } +if ($body_text eq "") { $body_text = '#000000'; } +if ($body_link eq "") { $body_link = '#0000ff'; } +if ($body_vlink eq "") { $body_vlink = '#0000ff'; } +if ($body_alink eq "") { $body_alink = '#0000ff'; } ############################################################################### # Generate the frameset index #