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 | 62 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100755 docs-xml/scripts/find_missing_doc (limited to 'docs-xml/scripts/find_missing_doc') diff --git a/docs-xml/scripts/find_missing_doc b/docs-xml/scripts/find_missing_doc new file mode 100755 index 0000000000..6ce547be3e --- /dev/null +++ b/docs-xml/scripts/find_missing_doc @@ -0,0 +1,62 @@ +#!/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