line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package HTML::Widget::JavaScript::Constraint::Equal;
|
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
1364
|
use warnings;
|
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
29
|
|
4
|
1
|
|
|
1
|
|
7
|
use strict;
|
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
27
|
|
5
|
|
|
|
|
|
|
|
6
|
1
|
|
|
1
|
|
5
|
use base 'HTML::Widget::Constraint::Equal';
|
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
537
|
|
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
=head1 NAME
|
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
HTML::Widget::JavaScript::Constraint::Equal - JavaScript Equal Constraint
|
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 VERSION
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
Version 0.02
|
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=cut
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
our $VERSION = '0.02';
|
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
JavaScript Equal Constraint.
|
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head1 METHODS
|
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
See L.
|
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head2 $self->emit_javascript($var_name)
|
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
Emits this constraint's JavaScript validation code.
|
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=cut
|
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
sub emit_javascript {
|
35
|
|
|
|
|
|
|
my ($self, $var_name) = @_;
|
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
my @js_constraints;
|
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
my $not = $self->not ? '' : '!';
|
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
return "($not(" . join(' == ', map {"${var_name}.$_.value"} @{$self->names}) . '))';
|
42
|
|
|
|
|
|
|
}
|
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head1 AUTHOR
|
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
Nilson Santos Figueiredo Júnior, C<< >>
|
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head1 BUGS
|
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
Please report any bugs or feature requests directly to the author.
|
51
|
|
|
|
|
|
|
If you ask nicely it will probably get fixed or implemented.
|
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=head1 COPYRIGHT & LICENSE
|
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
Copyright 2006, 2009 Nilson Santos Figueiredo Júnior, all rights reserved.
|
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it
|
58
|
|
|
|
|
|
|
under the same terms as Perl itself.
|
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=cut
|
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
1; # End of HTML::Widget::JavaScript::Constraint
|