Ignore:
Timestamp:
Aug 21, 2008, 2:08:39 AM (16 years ago)
Author:
Nelson Elhage <nelhage@mit.edu>
Branches:
master, debian, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
a82e091
Parents:
c4ba74d
Message:
Convert Message::IRC and Message::Jabber to use the new BarnOwl::command()

We should now be able to properly narrow to MUCs and users and
channels containing whitespace or quotation marks.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • perl/modules/Jabber/lib/BarnOwl/Message/Jabber.pm

    ra1a2036 r38a7f22  
    5656    my $inst = shift;
    5757
    58     my ($filter, $ftext);
     58    my $filter;
    5959
    6060    if($self->jtype eq 'chat') {
     
    6969        my $room = $self->room;
    7070        $filter = "jabber-room-$room";
    71         $ftext = qq{type ^jabber\$ and room ^$room\$};
    72         BarnOwl::filter("$filter $ftext");
     71        BarnOwl::command(qw[filter], $filter,
     72                         qw[type ^jabber$ and room], "^$room\$");
    7373        return $filter;
    7474    } elsif ($self->login ne 'none') {
     
    8383    $user   = Net::Jabber::JID->new($user)->GetJID( $inst ? 'full' : 'base' );
    8484    my $filter = "jabber-user-$user";
    85     my $ftext  =
    86         qq{type ^jabber\$ and ( ( direction ^in\$ and from ^$user ) }
    87       . qq{or ( direction ^out\$ and to ^$user ) ) };
    88     BarnOwl::filter("$filter $ftext");
     85    BarnOwl::command(qw[filter], $filter, qw[type ^jabber$],
     86                     qw[and ( ( direction ^in$ and from], "^$user",
     87                     qw[) or ( direction ^out$ and to ], "^$user",
     88                     qw[ ) ) ]);
    8989    return $filter;
    9090
Note: See TracChangeset for help on using the changeset viewer.