From 718317ecef54d90070b29657f613e39892e38d10 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Wed, 26 Sep 2012 01:31:37 +0200 Subject: undocumented: Drop extension from helper scripts. --- docs-xml/scripts/find_missing_doc.pl | 62 ------------------------------------ 1 file changed, 62 deletions(-) delete mode 100755 docs-xml/scripts/find_missing_doc.pl (limited to 'docs-xml/scripts/find_missing_doc.pl') diff --git a/docs-xml/scripts/find_missing_doc.pl b/docs-xml/scripts/find_missing_doc.pl deleted file mode 100755 index 6ce547be3ed..00000000000 --- a/docs-xml/scripts/find_missing_doc.pl +++ /dev/null @@ -1,62 +0,0 @@ -#!/usr/bin/perl - -my %doc; - -$topdir = (shift @ARGV) or $topdir = "."; - -################################################## -# Reading links from manpage - -$curdir = $ENV{PWD}; - -chdir("smbdotconf"); - -open(IN,"xsltproc --xinclude --param smb.context ALL generate-context.xsl parameters.all.xml|"); - -while() { - if( /) { - last if $ln =~ m/^static\ struct\ parm_struct\ parm_table.*/; -} #burn through the preceding lines - -while ($ln = ) { - last if $ln =~ m/^\s*\}\;\s*$/; - #pull in the param names only - next if $ln =~ m/.*P_SEPARATOR.*/; - next unless $ln =~ /\s*\.label\s*=\s*\"(.*)\".*/; - - my $name = $1; - $name =~ s/ //g; - - if($doc{lc($name)}) { - $doc{lc($name)} = "FOUND"; - } else { - print "'$name' is not documented\n"; - } -} -close SOURCE; - -################################################## -# Trying to find missing references - -foreach (keys %doc) { - if($doc{$_} cmp "FOUND") { - print "'$_' is documented but is not a configuration option\n"; - } -} -- cgit