Filename | /var/www/foswikidev/core/lib/Foswiki/Plugins/JQueryPlugin/COOKIE.pm |
Statements | Executed 11 statements in 182µs |
Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
---|---|---|---|---|---|
1 | 1 | 1 | 24µs | 43µs | new | Foswiki::Plugins::JQueryPlugin::COOKIE::
1 | 1 | 1 | 16µs | 29µs | BEGIN@3 | Foswiki::Plugins::JQueryPlugin::COOKIE::
1 | 1 | 1 | 9µs | 14µs | BEGIN@4 | Foswiki::Plugins::JQueryPlugin::COOKIE::
1 | 1 | 1 | 6µs | 6µs | BEGIN@6 | Foswiki::Plugins::JQueryPlugin::COOKIE::
Line | State ments |
Time on line |
Calls | Time in subs |
Code |
---|---|---|---|---|---|
1 | # See bottom of file for license and copyright information | ||||
2 | package Foswiki::Plugins::JQueryPlugin::COOKIE; | ||||
3 | 2 | 29µs | 2 | 42µs | # spent 29µs (16+13) within Foswiki::Plugins::JQueryPlugin::COOKIE::BEGIN@3 which was called:
# once (16µs+13µs) by Foswiki::Plugins::JQueryPlugin::Plugins::BEGIN@1.47 at line 3 # spent 29µs making 1 call to Foswiki::Plugins::JQueryPlugin::COOKIE::BEGIN@3
# spent 13µs making 1 call to strict::import |
4 | 2 | 25µs | 2 | 18µs | # spent 14µs (9+4) within Foswiki::Plugins::JQueryPlugin::COOKIE::BEGIN@4 which was called:
# once (9µs+4µs) by Foswiki::Plugins::JQueryPlugin::Plugins::BEGIN@1.47 at line 4 # spent 14µs making 1 call to Foswiki::Plugins::JQueryPlugin::COOKIE::BEGIN@4
# spent 4µs making 1 call to warnings::import |
5 | |||||
6 | 2 | 98µs | 1 | 6µs | # spent 6µs within Foswiki::Plugins::JQueryPlugin::COOKIE::BEGIN@6 which was called:
# once (6µs+0s) by Foswiki::Plugins::JQueryPlugin::Plugins::BEGIN@1.47 at line 6 # spent 6µs making 1 call to Foswiki::Plugins::JQueryPlugin::COOKIE::BEGIN@6 |
7 | 1 | 7µs | our @ISA = qw( Foswiki::Plugins::JQueryPlugin::Plugin ); | ||
8 | |||||
9 | =begin TML | ||||
10 | |||||
11 | ---+ package Foswiki::Plugins::JQueryPlugin::COOKIE | ||||
12 | |||||
13 | This is the perl stub for the jquery.cookie plugin. | ||||
14 | |||||
15 | =cut | ||||
16 | |||||
17 | =begin TML | ||||
18 | |||||
19 | ---++ ClassMethod new( $class, ... ) | ||||
20 | |||||
21 | Constructor | ||||
22 | |||||
23 | =cut | ||||
24 | |||||
25 | # spent 43µs (24+20) within Foswiki::Plugins::JQueryPlugin::COOKIE::new which was called:
# once (24µs+20µs) by Foswiki::Plugins::JQueryPlugin::Plugins::load at line 290 of /var/www/foswikidev/core/lib/Foswiki/Plugins/JQueryPlugin/Plugins.pm | ||||
26 | 1 | 500ns | my $class = shift; | ||
27 | |||||
28 | 1 | 17µs | 1 | 20µs | my $this = bless( # spent 20µs making 1 call to Foswiki::Plugins::JQueryPlugin::Plugin::new |
29 | $class->SUPER::new( | ||||
30 | name => 'Cookie', | ||||
31 | version => '20100921', # based on the blog posting on the homepage | ||||
32 | author => 'Klaus Hartl, Uzbekjon', | ||||
33 | homepage => | ||||
34 | 'http://jquery-howto.blogspot.com/2010/09/jquery-cookies-getsetdelete-plugin.html', | ||||
35 | javascript => ['jquery.cookie.js'], | ||||
36 | ), | ||||
37 | $class | ||||
38 | ); | ||||
39 | |||||
40 | 1 | 3µs | return $this; | ||
41 | } | ||||
42 | |||||
43 | 1 | 3µs | 1; | ||
44 | __END__ |