Template::Plugin::JavaScript - Encodes text to be safe in JavaScript


Template-Plugin-JavaScript documentation Contained in the Template-Plugin-JavaScript distribution.

Index


Code Index:

NAME

Top

Template::Plugin::JavaScript - Encodes text to be safe in JavaScript

SYNOPSIS

Top

  [% USE JavaScript %]
  <script type="text/javascript">
  document.write("[% sometext | js %]");
  </script>

DESCRIPTION

Top

Template::Plugin::JavaScript is a TT filter that filters text so it can be safely used in JavaScript quotes.

  [% USE JavaScript %]
  document.write("[% FILTER js %]
  Here's some text going on.
  [% END %]");

will become:

  document.write("\nHere\'s some text going on.\n");

AUTHOR

Top

The original idea comes from Movable Type's encode_js global filter.

Tatsuhiko Miyagawa <miyagawa@bulknews.net>

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

SEE ALSO

Top

Apache::JavaScript::DocumentWrite


Template-Plugin-JavaScript documentation Contained in the Template-Plugin-JavaScript distribution.

package Template::Plugin::JavaScript;

use strict;
use vars qw($VERSION);
$VERSION = '0.02';

require Template::Plugin;
use base qw(Template::Plugin);

use vars qw($FILTER_NAME);
$FILTER_NAME = 'js';

sub new {
    my($self, $context, @args) = @_;
    my $name = $args[0] || $FILTER_NAME;
    $context->define_filter($name, \&encode_js, 0);
    return $self;
}

sub encode_js {
    local $_ = shift;
    return '' unless defined $_;

    s!\\!\\\\!g;
    s!(['"])!\\$1!g;
    s!\n!\\n!g;
    s!\f!\\f!g;
    s!\r!\\r!g;
    s!\t!\\t!g;
    s!<!\\x3c!g;
    s!>!\\x3e!g;
    s!&!\\x26!g;
    $_;
}

1;
__END__