Show
Ignore:
Timestamp:
04/25/08 17:28:20 (7 months ago)
Author:
mattn
Message:

* タブ修正
* 私は自己顕示欲はそれ程強くありませんが...

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/WebService-Simple/trunk/example/flickr_search_liteparser.pl

    r10434 r10435  
    1414my $format = 'http://static.flickr.com/${server}/${id}_${secret}_m.jpg'; 
    1515for my $photo ($response->parse_response->select_nodes('/rsp/photos/photo')) { 
    16         my $image = $format; 
    17         print $image =~ s/\${(\w+)}/$photo->{attributes}->{$1}/ge && "$image\n"; 
     16    my $image = $format; 
     17    print $image =~ s/\${(\w+)}/$photo->{attributes}->{$1}/ge && "$image\n"; 
    1818}