Changeset f134488


Ignore:
Timestamp:
Jun 22, 2011, 9:56:46 PM (13 years ago)
Author:
Edward Z. Yang <ezyang@mit.edu>
Children:
348cffc
Parents:
43d8a1e
git-author:
Edward Z. Yang <ezyang@mit.edu> (06/21/11 10:19:16)
git-committer:
Edward Z. Yang <ezyang@mit.edu> (06/22/11 21:56:46)
Message:
Replace punctuation with spaces, and spaces to dashes, on rnjacob's suggestion.

Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
File:
1 edited

Legend:

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

    r6dccccf rf134488  
    2323        # stupidly pick the longest one, and only return one.
    2424        my $sentence = shift;
    25         $sentence =~ s/[[:punct:]]//g;
     25        $sentence =~ s/[[:punct:]]+/ /g;
    2626        my @words = split(' ', lc($sentence));
    2727        return () unless @words;
     
    207207            my @keywords = keywords($post->{name} || $post->{message});
    208208            my $topic = $keywords[0] || 'personal';
     209            $topic =~ s/ /-/g;
    209210            $self->{topics}->{$post_id} = $topic;
    210211            # XXX indexing is fragile
Note: See TracChangeset for help on using the changeset viewer.