X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=userapps%2Fopensource%2Fnet-snmp%2Flocal%2FFAQ2HTML;fp=userapps%2Fopensource%2Fnet-snmp%2Flocal%2FFAQ2HTML;h=0000000000000000000000000000000000000000;hb=6adeba4d92a546ebbadde2562283ee6b984b22c1;hp=69eff02115de103784355df805261e0a6ba421e7;hpb=dacd86d83a9fb430cca42cb78a67f9d46e289f5c;p=bcm963xx.git diff --git a/userapps/opensource/net-snmp/local/FAQ2HTML b/userapps/opensource/net-snmp/local/FAQ2HTML deleted file mode 100755 index 69eff021..00000000 --- a/userapps/opensource/net-snmp/local/FAQ2HTML +++ /dev/null @@ -1,53 +0,0 @@ -#!/usr/bin/perl -w - -$TOCHEADER=" TABLE OF CONTENTS"; - -open(O, ">FAQ.html"); -print O " -NET-SNMP FAQ -
-

Frequently Asked Questions (FAQ) for the Net-SNMP package

-FAQ Maintainer: Dave Shield
-Email: net-snmp-coders\@list.sourceforge.net
-
-
-

Table of Contents

\n"; - -while(<>) { - last if (/$TOCHEADER/); -} - -while(<>) { - last if (/^\s*$/); - chomp(); - if (/^ */) { - # continuation of the question. - print O "$_\n"; - next; - } - $_ =~ s/^ *//; - $x = $_; - $x =~ s/^ *//g; - $x =~ s/[^a-zA-Z]/_/g; - $xlate{$_} = $x; - if (/^[ A-Z]+$/) { - print O "
  • $_
    \n";
    -
    -while(<>) {
    -    $y = $_;
    -    chomp($y);
    -    if (defined($xlate{$y})) {
    -	print O "\n";
    -    }
    -    print O $_;
    -}
    -
    -$dt = localtime(time());
    -print O "

    -Last modified: $dt\n";