|
Hi steve or anyone who can help me
I've got a question about routers2.cgi
I'm a trainee at a company
I sort of connected your frontend to my own modified webpage
because the company wanted it modified
now i don't use the "bookmark""Refresh""CVS""and zoom options anymore
but they still are under my page
After a lot of browsing
I found this
# Page foot
print $config{'routers.cgi-pagefoot'},"\n"
if( defined $config{'routers.cgi-pagefoot'} );
#if( $gstyle !~ /p/ ) {
# my( $ngti, $ngto ) = ("","");
# print $q->hr;
# print "\n",$q->a({href=>"javascript:location.reload(true)"},
# $q->img({src=>"${config{'routers.cgi-iconurl'}}refresh.gif",
# alt=>"Refresh",border=>"0",width=>100,height=>20}))," \n"
if(!$archdate);
print $q->a({href=>"javascript:parent.makebookmark('"
.$q->escape($router)."','__compact','$gtype','$gstyle','$gopts','$baropts','".$q->escape($extra)."')"},
$q->img({src=>"${config{'routers.cgi-iconurl'}}bookmark.gif",
alt=>"Bookmark",border=>"0",width=>100,height=>20}))," \n";
print $q->a({href=>"$meurl?".optionstring({page=>"", xmtype=>"",
if=>"__compact", xgstyle=>""}), target=>"_top" },
$q->img({src=>"${config{'routers.cgi-iconurl'}}bookmark.gif",
alt=>"Bookmark",border=>"0",width=>100,height=>20}))," \n";
if( $gtype eq "6" ) { $ngto = "d"; }
elsif( $gtype eq "d" ) { $ngto = "w"; $ngti = "6" if($usesixhour); }
elsif( $gtype eq "w" ) { $ngti = "d"; $ngto = "m"; }
elsif( $gtype eq "m" ) { $ngti = "w"; $ngto = "y"; }
elsif( $gtype eq "y" ) { $ngti = "m"; }
if( $ngti ) {
print $q->a({href=>"$meurl?".optionstring({xgtype=>"$ngti"}), target=>"graph"},
$q->img({src=>"${config{'routers.cgi-iconurl'}}zoomin.gif",
alt=>"Zoom In",border=>"0",width=>100,height=>20}))," \n";
}
if( $ngto ) {
print $q->a({href=>"$meurl?".optionstring({xgtype=>"$ngto"}), target=>"graph"},
$q->img({src=>"${config{'routers.cgi-iconurl'}}zoomout.gif",
alt=>"Zoom Out",border=>"0",width=>100,height=>20}))," \n";
}
print $q->br,"\n";
}
print "<!-- CAMPIO=[$c][$a][$m][$p][$io] gtype=$gtype baropts=$baropts -->\n";
do_footer();
}
But
I can't figure out how to disable or exclude this part of the script so the page foot is not getting loaded anymore
plzz help me
|