#! perl # Copyright (C) 2006-2006, The Perl Foundation. # $Id: smartlinks.pl 22479 2007-10-25 16:01:30Z paultcochrane $ use strict; use warnings; use Getopt::Long; use Pod::Usage; use lib 'lib'; use SmartLink; ## process command-line optional arguments GetOptions( \my (%o), qw/ check syndir=s outdir=s css=s help fast testres / ) or pod2usage(2); $o{help} and pod2usage(1); $o{man} and pod2usage( -exitstatus => 0, -verbose => 2 ); $o{css} ||= 'http://dev.perl.org/css/perl.css'; $o{outdir} ||= '.'; ## process command-line required arguments pod2usage(1) unless @ARGV; mkdir $o{outdir} unless -d $o{outdir}; ## retrieve/compile smartlink-related data my $sls = SmartLinkServer->new; use Data::Dumper; $Data::Dumper::Indent = 1; ## scan test files; collect smartlinks and positional info. ## relate and store smartlink info with test filenames and line numbers #print Dumper $sls->linktree; ## process spec files #print Dumper $sls->specfiles; #print Dumper $sls->specfiles_of_type('PDD')->files->[2]->tree; ## RT#46899: integrate smartlink info, emit html print Dumper $sls; print Dumper $sls->mergetree; __END__ =head1 NAME smartlinks.pl -- link your tests (and results) to specification documents =head1 SYNOPSIS smartlinks.pl t/*/*.t t/*/*/*.t t/*/*/*/*.t smartlinks.pl --css foo.css --outdir=public_html t/op/*.t smartlinks.pl --check t/*/*.t t/*/*/*.t smartlinks.pl --check t/some/test.t =head1 DESCRIPTION Based on F from the pugs distribution, but converted both to work for Parrot, and to use the L family of modules. =head1 AUTHOR Jerry Gay a.k.a. particle, L =cut # Local Variables: # mode: cperl # cperl-indent-level: 4 # fill-column: 100 # End: # vim: expandtab shiftwidth=4: