1#!/usr/local/bin/perl
2#
3# This script is used to 'relay' your users to the new version.
4# Replace the previous version of FV.cgi with this file. That is,
5# in the old directory, copy this file over top of the old FV.cgi
6# and when your users go to the site they're familiar with they will be re-
7# directed to the new version. Modify according to your environment.
8
9### Modify this line to point to the v4.5 FlowViewer_Configuration.pm file
10require "/var/www/cgi-bin/FlowViewer_4.5/FlowViewer_Configuration.pm";
11###
12
13print "Content-type:text/html\n\n";
14print "<html>\n";
15print "<head>\n";
16print "<title>\n";
17print "FlowViewer $version\n";
18print "</title>\n";
19print "<style type=text/css><!-- A { text-decoration:none } --></style>";
20print "</head>\n";
21print "<body text=$text_color link=$link_color vlink=$vlink_color>";
22print "<pre>";
23
24print "\n\n\n";
25print "            <b>FlowViewer has been upgraded to Version 4.5</b>\n\n";
26print "            Version 4.5 introduces:\n\n";
27print "            1. The ability to use an environment with a local time other than GMT for SiLK\n";
28print "            2. Resolving a name-clash in commercial space by renaming FlowTracker to FlowMonitor\n";
29print "            3. Users may now supply SiLK IPset names in Source or Destination fields\n";
30print "            4. Fixes for IPv6 hyper-links which weren't working in FlowGrapher_Analyze\n";
31print "            5. Fixes for Dashboard processing during FlowMonitor Group creation\n";
32print "            6. Users can eliminate the pulldowns repeated in the bottom margin (smaller HTML)\n";
33print "            7. A new $site_config_file parameter to accommodate a vaiety of SiLK file structures\n";
34print "\n";
35print "            Please click below to use FlowViewer v4.5:\n";
36print "\n";
37print "            <a href=$FlowViewer_service://$FlowViewer_server/$cgi_bin_short/FV.cgi>FlowViewer v4.5</a>\n";
38print "\n";
39print "            Remember to change your bookmarks.  Thanks.\n";
40print "</body>\n";
41print "</html>\n";
42