Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
use strict; #### #### comment_reader.pl #### #### Reads a comment file from command-line arg or standard input #### and outputs the result as a fragment of HTML suitable for #### Perlmonks. #### use IO::File; use Getopt::Long; use Template; ###################### Constants ###################### use constant DEFAULT_TEMPLATE => 'comment_tmpl.tt2'; ###################### Main Program ################### MAIN: { ## Get the options my $template_file = DEFAULT_TEMPLATE; my $outfile = undef; GetOptions('outfile=s' => \$outfile, 'template=s' => \$template_file +); my $entries = read_entries(); my $template = Template->new(); $template->process($template_file, { files => $entries }, $outfile) or die $Template::ERROR; } ###################### Subroutines ##################### ## ## read_entries() ## ## Reads whatever entries are present on the command line, ## then returns them parsed and sorted as a reference ## to an array of hashes, like so: ## [ # List of files ## { 'name' => ## sub read_entries { my %comments = (); while (<>) { chomp; # Bare-bones attempt at avoiding missing closing tags while (m{<(?!\/)([^>]+)>}g) { my $tag = $1; m{</$tag>}i or warn "Missing closing tag for $tag at $.\n"; } my ($file_list, $comment) = split(/\s+/, $_, 2); foreach my $lineref (split(/;/, $file_list) ) { my ($file, $lines) = split(/:/, $lineref, 2); foreach my $line (split(/,/, $lines)) { push( @{ $comments{$file}{$line} }, $comment ); } } } return sort_files(\%comments); } ## ## Given a hash reference, turns it into a list of hashrefs. ## sub sort_files { my ($comments) = @_; my @files = (); foreach my $file (sort keys %$comments) { my @lines = (); foreach my $line (sort {$a <=> $b} keys %{$comments->{$file}}) { push(@lines, { 'number' => $line, 'comments' => $comments->{$fil +e}{$line} }); } push (@files, { name => $file, lines => \@lines }); } return \@files; }

In reply to Annotating Files by stephen

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (4)
As of 2024-04-25 13:11 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found