- Timestamp:
- Sep 23, 2012 12:40:42 PM (12 years ago)
- Branches:
- master, trunk
- Children:
- 43d739e
- Parents:
- 52c76fd
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/twitter/dump_timeline.pl
r52c76fd r6852f37 99 99 my $text = ""; 100 100 $text .= "(". $status->{id} . ") "; 101 $text .= $status->{user}{screen_name} . "|"; 102 $text .= $status->{user}{name}; 101 $text .= ($status->{user}{screen_name}) ? 102 $status->{user}{screen_name} : $status->{from_user}; 103 $text .= "|"; 104 $text .= ($status->{user}{name}) ? 105 $status->{user}{name} : $status->{from_user_name}; 103 106 $text .= " [" . $status->{created_at} . "]"; 104 107 $text .= " ". $status->{text};
Note: See TracChangeset
for help on using the changeset viewer.