Changeset 8031 for lang/perl/App-MadEye

Show
Ignore:
Timestamp:
03/17/08 15:43:54 (9 months ago)
Author:
tokuhirom
Message:

use moniker.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/App-MadEye/trunk/lib/App/MadEye/Plugin/Notify/IKC.pm

    r8029 r8031  
    2929    my $text = ''; 
    3030    while (my ($module, $targets) = each %$args) { 
     31        $module = _moniker($module); 
    3132        $text .= "= $module\n" .  truncstr(_format_target($targets), $cutoff_length) . "\n"; 
    3233    } 
     
    4344    } 
    4445    $text; 
     46} 
     47 
     48sub _moniker { 
     49    my $module = shift; 
     50    $module =~ s/.+:://; 
     51    $module; 
    4552} 
    4653