Show
Ignore:
Timestamp:
10/15/07 22:16:15 (2 years ago)
Author:
eevee
Message:

Apparently Template::Plugin::Math is gone from the latest releases, so I've taken out the few times I used it.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • veekun/trunk/lib/Vee/View/TT.pm

    r283 r345  
    2424    PRE_DEFINE      => { 
    2525    #                allowed     => sub { return $self->allowed(@_) }, 
     26        # Math plugin is gone for unknown reasons 
    2627        round       => \&Vee::Utils::round, 
    27         int => sub { int shift }, 
    28         time => sub { Time::HiRes::time }, 
    29         lc => sub { lc shift }, 
    30         inet_ntoa => \&Vee::Utils::inet_ntoa, 
    31         inet_aton => \&Vee::Utils::inet_aton, 
    32         hsv2rgb => \&Vee::Utils::hsv2rgb, 
    33         wordcap => \&Vee::Utils::wordcap, 
    34         tripcode => \&Vee::Utils::tripcode, 
     28        sqrt        => sub { sqrt shift }, 
     29        log         => sub { log shift }, 
     30        int         => sub { int shift }, 
     31        time        => sub { Time::HiRes::time }, 
     32        lc          => sub { lc shift }, 
     33        inet_ntoa   => \&Vee::Utils::inet_ntoa, 
     34        inet_aton   => \&Vee::Utils::inet_aton, 
     35        hsv2rgb     => \&Vee::Utils::hsv2rgb, 
     36        wordcap     => \&Vee::Utils::wordcap, 
     37        tripcode    => \&Vee::Utils::tripcode, 
    3538 
    3639        # forum stuff...