line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package VoiceXML::Client::Item::NoMatch; |
3
|
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
|
5
|
3
|
|
|
3
|
|
19
|
use base qw (VoiceXML::Client::Item); |
|
3
|
|
|
|
|
5
|
|
|
3
|
|
|
|
|
230
|
|
6
|
3
|
|
|
3
|
|
20
|
use VoiceXML::Client::Util; |
|
3
|
|
|
|
|
6
|
|
|
3
|
|
|
|
|
88
|
|
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
Copyright (C) 2007,2008 by Pat Deegan. |
13
|
|
|
|
|
|
|
All rights reserved |
14
|
|
|
|
|
|
|
http://voicexml.psychogenic.com |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
This library is released under the terms of the GNU GPL version 3, making it available only for |
17
|
|
|
|
|
|
|
free programs ("free" here being used in the sense of the GPL, see http://www.gnu.org for more details). |
18
|
|
|
|
|
|
|
Anyone wishing to use this library within a proprietary or otherwise non-GPLed program MUST contact psychogenic.com to |
19
|
|
|
|
|
|
|
acquire a distinct license for their application. This approach encourages the use of free software |
20
|
|
|
|
|
|
|
while allowing for proprietary solutions that support further development. |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
This file is part of VoiceXML::Client. |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
VoiceXML::Client is free software: you can redistribute it and/or modify |
28
|
|
|
|
|
|
|
it under the terms of the GNU General Public License as published by |
29
|
|
|
|
|
|
|
the Free Software Foundation, either version 3 of the License, or |
30
|
|
|
|
|
|
|
(at your option) any later version. |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
VoiceXML::Client is distributed in the hope that it will be useful, |
33
|
|
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of |
34
|
|
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
35
|
|
|
|
|
|
|
GNU General Public License for more details. |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License |
38
|
|
|
|
|
|
|
along with VoiceXML::Client. If not, see . |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=cut |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
|
46
|
3
|
|
|
3
|
|
14
|
use strict; |
|
3
|
|
|
|
|
7
|
|
|
3
|
|
|
|
|
97
|
|
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
|
49
|
3
|
|
|
|
|
463
|
use vars qw{ |
50
|
|
|
|
|
|
|
$VERSION |
51
|
3
|
|
|
3
|
|
15
|
}; |
|
3
|
|
|
|
|
5
|
|
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
$VERSION = $VoiceXML::Client::Item::VERSION; |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
sub init { |
60
|
0
|
|
|
0
|
1
|
|
my $self = shift; |
61
|
|
|
|
|
|
|
|
62
|
0
|
|
0
|
|
|
|
my $count = $self->{'XMLElement'}->attribute('count') || 0; |
63
|
|
|
|
|
|
|
|
64
|
0
|
0
|
|
|
|
|
if ($count =~ m/^\d+$/) |
65
|
|
|
|
|
|
|
{ |
66
|
0
|
|
|
|
|
|
$self->{'count'} = $count; |
67
|
|
|
|
|
|
|
} else { |
68
|
0
|
|
|
|
|
|
$self->{'count'} = 0; |
69
|
|
|
|
|
|
|
} |
70
|
|
|
|
|
|
|
|
71
|
0
|
|
|
|
|
|
return 1; |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
} |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
1; |