The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Text::Chump - a module for parsing Chump like syntax

SYNOPSIS

        use Text::Chump;

        my $tc = Text::Chump->new();

        $tc->chump('[all mine!|http://thegestalt.org]');
        # returns <a href='http://thegestalt.org'>all mine!</a>

        $tc->chump('+[all mine!|http://thegestalt.org]');
        # returns <img src='http://thegestalt.org' alt='all mine!'>

        $tc->chump('http://thegestalt.org');
        # returns <a href='http://thegestalt.org'>http;//thegestalt.org</a>

        my $tc = Text::Chump->new({images=>0});

        $tc->chump('+[all mine!|http://thegestalt.org]');
        # returns '+[all mine!|http://thegestalt.org]'


        sub foo {
                my ($url, $label) = @_;

                return "$label ($url)";
        }

        $tc->install('link',\&foo);
        $tc->chump('[foo|http://bar.com]');
        # returns 'foo (http://bar.com)'

        sub quirka {
                my ($opts, $match, $label) = @_;

                return "<a href="blog.cgi?entry=$match">$label</a>";

        }



        $tc->install('link',\$quirka,'\d+');
        $tc->chump('[stuff|4444]');
        # returns "<a href="blog.cgi?entry=4444">stuff</a>"

DESCRIPTION

Chump is an IRC bot that allows people to post links and comments onto a website from within an IRC Channel. Some people call this a blog but I hate that term. Hate it. *HATE IT*! ... *cough* ... so I'll avoid it from now on.

The Chump is based on an original idea by Bijan Parsia. Bijan wrote a bot in Squeak called DiaWebLogBot, which powers the Monkeyfist Daily Churn and subsequently Useful Inc. "stole all his good ideas". Therefore The Chump syntax is derived and extended from diaweblogbot.

The bot is available from http://usefulinc.com/chump/ and the original page that uses this form of markup is http://pants.heddley.com.

The items which are displayed on the page can have a special format. These, in turn get marked up as HTML (by default). Essentially this provides a simple markup language. Yes - they could have used XML and been fully buzzword compliant (it uses XML in the backend if that's any help) but they didn't.

Since then the syntax has been appropriated by a number of projects including one of my own, so, like the good little code that I am, it all went in a module.

Which I may as well release because somebody else wants to release a module which depends on it and it might be useful to someone else.

Alternatives to this module include Text::WikiFormat and HTML::FromText although they do subtly different things. In fact you could probably chain them together - especially HTML::FromText with uri set to 0.

SYNTAX

As described here

http://usefulinc.com/chump/MANUAL.txt

  • Links :

      [<text>|url]

    This creates an inline link (i.e. turning a word into a link). So, for example

      They also have [another site|http://foobar.com]

    will make the words "another site" appear as a hyperlink to the URL http://foobar.com.

  • Images :

      +[http://url.of.image.com/image.jpg]

    This creates an inline image in some text. By providing some text you can provide an alt tag which is considered a good thing to do.

      +[This is the alt text|http://url.of.image.com/image.jpg]

    By providing a url in the middle

      +[This is the alt text|http://foobar.com|http://url.of.image.com/image.jpg]

    You can turn the image into a clickable link.

  • Urls :

      http://foobar.com

    this will be turned into a clicable link.

METHODS

new <opts>

Can take an hashref of options (target defaults to nothing, border defaults to 0, everything else defaults to 1 == yes)

  • target :

    A default target for a URL (such as _blank)

  • border :

    Whether inline images should have a border

  • images :

    Whether to process image markup

  • links :

    Whether to process link markup

  • urls :

    Whether to process urls

new_type [name] [char] [coderef] <regexp>

Installs a new type so that if the parser comes across

        $char[stuff|nonsense] 

then the parts will be passed to the coderef in the normal way. If you pass in a regexp then that will be used to determine the match, just like if you install a new handler.

In order to turn off handling of the new type pass in

        $opt->{"${name}s"} = 0;

as the options to chump(). So

        my $text = 'foo bar %[foo|http://quux.com]';

        $mc->new_type('percent','%', sub { return $_[1] });
        $mc->chump($text);
        

returns

        'foo bar http://quux.com'

but

        my $text = 'foo bar %[foo|http://quux.com]';

        $mc->new_type('percent','%', sub { return $_[1] }, 'foo');
        $mc->chump($text);      

returns

        'foo bar foo'

but

        my $text = 'foo bar %[foo|http://quux.com]';

        $mc->new_type('percent','%', sub { return $_[1] }, 'foo');
        $mc->chump($text, { 'percents' => 0 });

returns

        'foo bar %[foo|http://quux.com]'

So that's all clear then :)

chump [text]

Takes some text to munge and returns it, fully chumped. Can optionally take a hashref with the same options as new except that these options will only apply to this bit of text.

install [type] [coderef] <regexp>

if you pass in either 'image', 'link' or 'url' and a valid coderef then that code ref will be called on the original sting instead of the default behaviour.

This is useful for outputting something other than HTML.

And, in a special, one time only offer, if optionally you pass in a regexp then you can add your own handlers. So, for example, if you did :

        $tc->install('link', sub { return 'foo' }, '\d{4}');
        print $tc->chump('[test|1234]'); # prints "foo"

However you regexps are checked in reverse order they're put in so if you then do :

        $tc->install('link', sub { return 'bar' }, '\d{5}');

then :

        print $tc->chump('[test|1234]');  # prints "foo"
        print $tc->chump('[test|12345]'); # prints "bar"

Note: all regexps are assumed to be case insensitive.

If you want to monkey around with the ordering post install then the IxHash object that they're installed in can be found in

        $tc->{plugins}->{[name]}->{regexp}

For a link or and image the values passed to the coderef are a hashref of options then the match then the label and then optionally a middle value.

If no label is passed then it will be set to the same value as the link.

So for these

        [foo|bar|http://thegestalt.org]
        [http://thegestaltorg|bar|foo]

a sub will be passed

        my ($opt, $link, $label, $middle) = @_;
        
        # $opt    = hashref of options
        # $link   = http://thegestalt.org
        # $label  = foo
        # $middle = bar

and for

        [http://thegestalt.org]

you'll get

        # $opt    = hashref of options
        # $link   = http://thegestalt.org
        # $label  = http://thegestalt.org
        # $middle = undef

For a url you'll only get passed an opt and the original string.

_order_params [function] [@params]

Given a function and an array of params it will return the first parameter that matches the function.

The order that it checks in is last element of the array and then the first element.

Why this weird order? Because it's more natural to write

        [foo|http://bar.com]

or, at least, that seems to be the behaviour I've observed.

A typical function would look like this

        sub {
                return $_[0] =~ /\d+/;
        }

Just incase you want to call this from your own plugin, this is the default action for links.

Calls, _make_link internally.

_chump_image [opts] [url] [labe] <link>

Ditto, but for images.

Returns

        <img src='$url' alt='$label' title='$label' $opts->{border} />

optionally wrapping it in an href to <link>

_chump_url [opts] [text]

Does a call to to _make_link for each URL it finds.

returns

        <a href='$link' target='$opts->{target}'>$text</a>

_is_url [text]

Returns 1 if the text is a url or 0 if it isn't.

BUGS

Not that I know of.

Oh, wait - maybe it should URL escape any entities in the text but you should probably do that yourself.

COPYING

(c)opyright 2002, Simon Wistow

Distributed under the same terms as Perl itself.

This software is under no warranty and will probably ruin your life, kill your friends, burn your house and bring about the apocalypse

AUTHOR

Copyright 2003, Simon Wistow <simon@thegestalt.org>

SEE ALSO

http://usefulinc.com/chump/, Bot::Basic::Pluggable::Blog, Template::Plugin::Chump, Text::WikiFormat, HTML::FromText, Tie::IxHash