File: Helper.pm

package info (click to toggle)
libhtml-prototype-perl 1.48-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 508 kB
  • sloc: perl: 608; makefile: 4
file content (32 lines) | stat: -r--r--r-- 601 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package HTML::Prototype::Helper;

use strict;
use HTML::Prototype::Helper::Tag;

=head1 NAME

HTML::Prototype::Helper - Imports helper packages for HTML::Prototype

=head1 SYNOPSIS

	use HTML::Prototype::Helper;

=head1 SEE ALSO

L<HTML::Prototype>, L<http://prototype.conio.net/>

=head1 AUTHOR

Sascha Kiefer, C<esskar@cpan.org>

Built around Prototype by Sam Stephenson.
Much code is ported from Ruby on Rails javascript helpers.

=head1 LICENSE

This library is free software. You can redistribute it and/or modify it under
the same terms as perl itself.

=cut

1;