Changeset 9d59118 for perl/modules


Ignore:
Timestamp:
Mar 6, 2008, 3:29:18 PM (16 years ago)
Author:
Alejandro R. Sedeño <asedeno@mit.edu>
Branches:
master, barnowl_perlaim, debian, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
5577606
Parents:
2d4ff14 (diff), 9815e2e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:
Merged revisions 975-982 via svnmerge from 
file:///afs/sipb.mit.edu/project/barnowl/src/svn/trunk

........
  r976 | nelhage | 2008-03-01 18:41:46 -0500 (Sat, 01 Mar 2008) | 2 lines
  
  Fix loading PAR modules that weren't present at startup
........
  r978 | nelhage | 2008-03-01 19:29:54 -0500 (Sat, 01 Mar 2008) | 2 lines
  
  Update perlwrap.pm documentation for the select() BarnOwl
........
  r980 | nelhage | 2008-03-03 11:44:52 -0500 (Mon, 03 Mar 2008) | 2 lines
  
  Render IRC notices as normal messages
........
  r981 | shadow | 2008-03-03 15:00:24 -0500 (Mon, 03 Mar 2008) | 3 lines
  
  ensure that even if ioctl(,TIOCGWINSZ,) returns 0s we never
  set g->lines (and g->cols) to 0
........
  r982 | nelhage | 2008-03-06 12:52:58 -0500 (Thu, 06 Mar 2008) | 2 lines
  
  Typo fix in docs
........
Location:
perl/modules
Files:
6 edited

Legend:

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

    re322b7c r661d2eb  
    5151            sub { shift; $self->on_msg(@_) });
    5252    $self->conn->add_handler(['welcome', 'yourhost', 'created',
    53             'luserclient', 'luserop', 'luserchannels', 'luserme',
    54             'notice', 'error'],
     53                              'luserclient', 'luserop', 'luserchannels', 'luserme',
     54                              'error'],
    5555            sub { shift; $self->on_admin_msg(@_) });
    5656    $self->conn->add_handler(['myinfo', 'map', 'n_local', 'n_global',
  • perl/modules/Jabber/lib/BarnOwl/Module/Jabber.pm

    r6b580b0 r5f3168a  
    2525use Net::DNS;
    2626use Getopt::Long;
     27
     28use utf8;
    2729
    2830our $VERSION = 0.1;
     
    377379                    $vars{jlogin_havepass} = 1;
    378380                    $conn->removeConnection($jidStr);
    379                     BarnOwl::start_password( "Password for $jidStr: ", \&do_login );
     381                    BarnOwl::start_password("Password for $jidStr: ", \&do_login );
    380382                    return "";
    381383                }
     
    486488    }
    487489    else {
    488         $to = shift @ARGV;
     490      $to = shift @ARGV;
    489491    }
    490492
     
    530532    $cmd .= " -t $jwrite_thread" if $jwrite_thread;
    531533    $cmd .= " -s $jwrite_subject" if $jwrite_subject;
    532     BarnOwl::start_edit_win( $cmd, \&process_owl_jwrite );
     534
     535    BarnOwl::start_edit_win($cmd, \&process_owl_jwrite );
    533536}
    534537
  • perl/modules/Jabber/lib/BarnOwl/Module/Jabber/Connection.pm

    r6b580b0 r5f3168a  
    11use warnings;
    22use strict;
     3use utf8;
    34
    45=head1 NAME
  • perl/modules/Jabber/lib/Net/XMPP/Debug.pm

    rc2bed55 rb7b2a76  
    189189                        {
    190190                            $self->{HANDLE}->autoflush(1);
     191                            binmode $self->{HANDLE}, ":utf8";
    191192                            $Net::XMPP::Debug::HANDLES{$args{file}} = $self->{HANDLE};
    192193                        }
  • perl/modules/Jabber/lib/Net/XMPP/Message.pm

    rc2bed55 r8574801  
    135135                            $Mess->SetMessage(TO=>"bob\@jabber.org",
    136136                                              Subject=>"Lunch",
    137                                               BoDy=>"Let's do lunch!");
     137                                              Body=>"Let's do lunch!");
    138138                            $Mess->SetMessage(to=>"bob\@jabber.org",
    139139                                              from=>"jabber.org",
  • perl/modules/Jabber/lib/XML/Stream.pm

    r5073972 ra8d5a39  
    16591659    {
    16601660        $self->debug(3,"Send: can_write");
    1661        
     1661
    16621662        $self->{SENDSTRING} = Encode::encode_utf8(join("",@_));
    16631663
Note: See TracChangeset for help on using the changeset viewer.