Ignore:
Timestamp:
Sep 19, 2011, 1:31:34 PM (13 years ago)
Author:
Edward Z. Yang <ezyang@mit.edu>
Children:
61d7594
Parents:
9da6022
git-author:
Edward Z. Yang <ezyang@mit.edu> (06/20/11 11:43:49)
git-committer:
Edward Z. Yang <ezyang@mit.edu> (09/19/11 13:31:34)
Message:
Rename postid to post_id.

Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
Location:
perl/modules/Facebook/lib/BarnOwl/Module
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • perl/modules/Facebook/lib/BarnOwl/Module/Facebook.pm

    r9da6022 r2226f91  
    102102BarnOwl::new_command('facebook-comment' => \&cmd_facebook_comment, {
    103103    summary     => 'Comment on a wall post.',
    104     usage       => 'facebook-comment POSTID',
     104    usage       => 'facebook-comment POST_ID',
    105105    description => 'Comment on a friend\'s wall post.  Using r is recommended.'
    106106});
     
    130130sub cmd_facebook_comment {
    131131    my $cmd  = shift;
    132     my $postid = shift;
     132    my $post_id = shift;
    133133
    134     my $topic = $facebook_handle->get_topic($postid);
     134    my $topic = $facebook_handle->get_topic($post_id);
    135135
    136136    # XXX UI should give some (better) indication /which/ conversation
    137137    # is being commented on
    138138    BarnOwl::start_edit_win("Write a comment on '$topic'...",
    139                             sub { $facebook_handle->facebook_comment($postid, shift) });
     139                            sub { $facebook_handle->facebook_comment($post_id, shift) });
    140140}
    141141
  • perl/modules/Facebook/lib/BarnOwl/Module/Facebook/Handle.pm

    r9da6022 r2226f91  
    179179        my $name    = $post->{to}{data}[0]{name} || $post->{from}{name};
    180180        my $name_id = $post->{to}{data}[0]{id} || $post->{from}{id};
    181         my $postid  = $post->{id};
     181        my $post_id  = $post->{id};
    182182
    183183        # Only handle post if it's new
     
    186186            my @keywords = keywords($post->{name} || $post->{message});
    187187            my $topic = $keywords[0] || 'personal';
    188             $self->{topics}->{$postid} = $topic;
     188            $self->{topics}->{$post_id} = $topic;
    189189            # XXX indexing is fragile
    190190            my $msg = BarnOwl::Message->new(
     
    196196                direction => 'in',
    197197                body      => $self->format_body($post),
    198                 postid    => $postid,
     198                post_id    => $post_id,
    199199                topic     => $topic,
    200200                time      => asctime(localtime $created_time),
     
    206206            BarnOwl::queue_message($msg);
    207207        } else {
    208             $self->{topics}->{$postid} = $old_topics->{$postid} || 'personal';
     208            $self->{topics}->{$post_id} = $old_topics->{$post_id} || 'personal';
    209209        }
    210210
     
    227227                    direction => 'in',
    228228                    body      => $comment->{message},
    229                     postid    => $postid,
    230                     topic     => $self->get_topic($postid),
     229                    post_id    => $post_id,
     230                    topic     => $self->get_topic($post_id),
    231231                    time      => asctime(localtime $comment_time),
    232232                   );
     
    279279    my $self = shift;
    280280
    281     my $postid = shift;
     281    my $post_id = shift;
    282282    my $msg = shift;
    283283
    284     $self->{facebook}->add_comment( $postid )->set_message( $msg )->publish;
     284    $self->{facebook}->add_comment( $post_id )->set_message( $msg )->publish;
    285285    $self->sleep(0);
    286286}
     
    326326    my $self = shift;
    327327
    328     my $postid = shift;
    329 
    330     return $self->{topics}->{$postid} || 'personal';
     328    my $post_id = shift;
     329
     330    return $self->{topics}->{$post_id} || 'personal';
    331331}
    332332
Note: See TracChangeset for help on using the changeset viewer.