]> i-scream Git - www.i-scream.org.git/commitdiff
Use static menu instead of SSI one.
authorTim Bishop <tim@bishnet.net>
Wed, 24 Mar 2004 23:53:09 +0000 (23:53 +0000)
committerTim Bishop <tim@bishnet.net>
Wed, 24 Mar 2004 23:53:09 +0000 (23:53 +0000)
cgi-bin/cvslog.cgi
cgi-bin/docs.cgi

index 01ee2bfabf732c52705f42dcc9a11882550699b2..e71e471ef9251032047df0a8034cf170e845335f 100755 (executable)
@@ -55,7 +55,7 @@ my ($doctype) = "$incdir/doctype.inc";
 my ($style) = "$incdir/style.inc";
 my ($header) = "$incdir/header.inc";
 my ($footer) = "$incdir/footer.inc";
-my ($menu) = "$incdir/menu.inc" ;
+my ($menu) = "$incdir/menu-static.inc" ;
 
 # Section markers
 my ($secwho) = 1;
@@ -291,13 +291,8 @@ exit 0;
 # Print the contents of a file containing html
 sub print_html {
     my ($filename) = @_;
-    my($virtual) = '<!--#include virtual="/cgi-bin/logo.cgi" -->';
-    my(@virtualresponse) = `/web/i-scream/nwww.cgi-bin/logo.cgi`;
     open(FILE, $filename);
     while(<FILE>) {
-        if(/$virtual/) {
-            s/$virtual/$virtualresponse[@virtualresponse-1]/;
-        }
         print;
     }
     close FILE;
index ee22b7b9ed4c8f05aeda8a797f03484ec286a06c..8acae25ba31a5d9903178fd981afcabf2f552b94 100755 (executable)
@@ -13,7 +13,7 @@ my ($doctype) = "$incdir/doctype.inc";
 my ($style) = "$incdir/style.inc";
 my ($header) = "$incdir/header.inc";
 my ($footer) = "$incdir/footer.inc";
-my ($menu) = "$incdir/menu.inc" ;
+my ($menu) = "$incdir/menu-static.inc" ;
 
 my ($query) = new CGI;
 
@@ -136,13 +136,8 @@ my ($urls) = '(' . join ('|', qw{
 # Print the contents of a file containing html
 sub print_html ($) {
     my ($filename) = @_;
-    my($virtual) = '<!--#include virtual="/cgi-bin/logo.cgi" -->';
-    my(@virtualresponse) = `/web/i-scream/nwww.cgi-bin/logo.cgi`;
     open(FILE, $filename);
     while(<FILE>) {
-        if(/$virtual/) {
-            s/$virtual/$virtualresponse[@virtualresponse-1]/;
-        }
         print;
     }
     close FILE;