Changes in / [10e0ab8:aed6bcd]
- Files:
-
- 1 added
- 2 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
r6af4068 rd7a3188 1 1 $Id$ 2 3 1.0.1 4 * Remove an unneeded .orig file from libfaim/ - hartmans 5 * Update the copyright notice in ':show license' - nelhage 6 * Add a jabber:spew variable that controls whether unrecognized 7 Jabber messages (such as pubsub requests) are displayed. - nelhage 8 * Make the 'style' command assume the main:: package for 9 unqualified subroutine references. Reported by Jesse Vincent. - nelhage 10 * Rename doc/contributors to the more canonical AUTHORS - nelson 2 11 3 12 1.0.0 -
functions.c
r6a990fb r4367915 125 125 text="" 126 126 "barnowl version " OWL_VERSION_STRING "\n" 127 "Copyright (c) 2006-2008 The BarnOwl Developers. All rights reserved.\n" 127 128 "Copyright (c) 2004 James Kretchmar. All rights reserved.\n" 128 129 "\n" -
owl.h
r2401376 rd7a3188 56 56 57 57 #ifndef OWL_VERSION_STRING 58 #define OWL_VERSION_STRING "1.0. 0"58 #define OWL_VERSION_STRING "1.0.1" 59 59 #endif 60 60 -
perl/modules/Jabber/lib/BarnOwl/Module/Jabber.pm
rb72a352 r8af89a7 74 74 { default => 1, 75 75 summary => 'Show offline or pending buddies.'}); 76 BarnOwl::new_variable_bool("jabber:spew", 77 { default => 0, 78 summary => 'Display unrecognized Jabber messages.'}); 76 79 BarnOwl::new_variable_int("jabber:auto_away_timeout", 77 80 { default => 5, … … 974 977 # } 975 978 # 976 BarnOwl::queue_message( BarnOwl::Message->new(%jhash) ); 979 if(BarnOwl::getvar('jabber:spew') eq 'on') { 980 BarnOwl::queue_message( BarnOwl::Message->new(%jhash) ); 981 } 977 982 } 978 983 -
perlwrap.pm
r6b3878b rb441079 1023 1023 my $fn = shift; 1024 1024 { 1025 # For historical reasons, assume unqualified references are 1026 # in main:: 1027 package main; 1025 1028 no strict 'refs'; 1026 1029 unless(*{$fn}{CODE}) { … … 1055 1058 $_[0]->legacy_populate_global(); 1056 1059 } 1057 no strict 'refs'; 1058 goto \&{$self->{function}}; 1060 { 1061 package main; 1062 no strict 'refs'; 1063 goto \&{$self->{function}}; 1064 } 1059 1065 } 1060 1066
Note: See TracChangeset
for help on using the changeset viewer.