line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package HTML::Widget::Constraint::ASCII; |
2
|
|
|
|
|
|
|
|
3
|
88
|
|
|
88
|
|
81446
|
use warnings; |
|
88
|
|
|
|
|
208
|
|
|
88
|
|
|
|
|
2800
|
|
4
|
88
|
|
|
88
|
|
538
|
use strict; |
|
88
|
|
|
|
|
186
|
|
|
88
|
|
|
|
|
2855
|
|
5
|
88
|
|
|
88
|
|
2934
|
use base 'HTML::Widget::Constraint::Regex'; |
|
88
|
|
|
|
|
195
|
|
|
88
|
|
|
|
|
12636
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
=head1 NAME |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
HTML::Widget::Constraint::ASCII - ASCII Constraint |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 SYNOPSIS |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
my $c = $widget->constraint( 'ASCII', 'foo' ); |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 DESCRIPTION |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
ASCII Constraint. |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 METHODS |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head2 regex |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
Provides a regex to validate ASCII text. |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=cut |
26
|
|
|
|
|
|
|
|
27
|
7
|
|
|
7
|
1
|
50
|
sub regex {qr/^[\x20-\x7E]*$/} |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 AUTHOR |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
Sebastian Riedel, C |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head1 LICENSE |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
This library is free software, you can redistribute it and/or modify it under |
36
|
|
|
|
|
|
|
the same terms as Perl itself. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=cut |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
1; |