vote up 0 vote down star

Is there a tool like javadoc to extract the <%doc> content and the various methods with their parameters in Mason (Perl)? I'd like to add some basic documentation to components I'm writing and it would nice for the documentation to be auto-generated from the code.

Edited to answer question from benrifkah:

My intention was to look for a tool that functions like javadoc. It uses the comments in <%doc> and also extracts the info from <%method> and <%def> blocks.

flag

25% accept rate

3 Answers

vote up 1 vote down

While the HTML::Mason developer documentation states:

One can easily write a program to sift through a set of components and pull out their <%doc> blocks to form a reference page.

It does not look like anyone has actually done this and made their tool available to others. Since they assert that it would be "easily" done, maybe you should re-phrase the question as:

How can I write a tool to extract <%doc> content from HTML::Mason components?

link|flag
Maybe someone should write the tool and submit it to the Mason project :) – brian d foy Dec 19 '08 at 19:10
vote up 1 vote down

Here is a proof of concept script that uses Text::Balanced to grab all of the <%doc> sections into an array. You should be able to use this as a starting point for a full-fledged Mason documentation tool.

#!/usr/bin/perl
use strict;
use warnings;

use Text::Balanced qw( extract_multiple extract_tagged );

my $file = 'test.mason.txt';
my $contents;
{
    local $/;
    open my $fh, $file
        or die "Unable to open $file for reading, $!\n";
    $contents = <$fh>;
    close $fh;
}

my @extracted = extract_multiple( $contents, [ sub { extract_tagged( $_[0], '<%doc>', '</%doc>', '.*?(?=<%doc>)'); } ], undef, 1 );

s!</?%doc>!!g for @extracted;

print "@extracted\n";
link|flag
vote up 0 vote down

I'm unclear as to what you're looking for. Your title asks about how to

extract <%doc> content

This sounds to me like you're looking for a way to parse mason components and do something with the contents of pre-existing <%doc> blocks.

It looks like the current answers (from Adam Bellaire and Mr. Muskrat) are addressing this issue.

However, your explanation goes on to say

it would nice for the documentation to be auto-generated from the code

This suggest that you don't have <%doc> blocks in your components yet and you want code that will parse the component finding all of the <%method>, <%def> and other blocks of code and create stub <%doc> blocks.

Which of these are you trying to do; extract, or generate?

P.S. This is not intended as an answer. I would have commented on the question but I don't have enough rep yet. Once this is clarified and the question is edited I'll delete this answer.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.