github
Advanced Search
  • Home
  • Pricing and Signup
  • Explore GitHub
  • Blog
  • Login

msparks / irssiscripts

  • Admin
  • Watch Unwatch
  • Fork
  • Your Fork
  • Pull Request
  • Download Source
    • 4
    • 1
  • Source
  • Commits
  • Network (1)
  • Issues (0)
  • Downloads (0)
  • Wiki (1)
  • Graphs
  • Branch: master

click here to add a description

click here to add a homepage

  • Branches (1)
    • master ✓
  • Tags (0)
Sending Request…
Enable Donations

Pledgie Donations

Once activated, we'll place the following badge in your repository's detail box:
Pledgie_example
This service is courtesy of Pledgie.

Scripts for the Irssi IRC client — Read more

  cancel

http://quadpoint.org/projects/irssiscripts

  cancel
  • Private
  • Read-Only
  • HTTP Read-Only

This URL has Read+Write access

bumping version and change date 
msparks (author)
Mon Feb 08 17:18:16 -0800 2010
commit  07f77deb13165e61efaa1488422f1e73a447b281
tree    b9da7850542c5d30624c1049f2834183213f37f0
parent  51c4411f9120009d8b38ad57c39262306461ff93
irssiscripts / hilight_notice.pl hilight_notice.pl
100644 42 lines (32 sloc) 1.109 kb
edit raw blame history
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# hilight_notice.pl for irssi
#
# This script changes the message level for notices to the level used by private
# messages. Notices go to the status window by default, so when this script is
# loaded, the status window will be hilighted like a query window.
#
# Based off of active_notice.pl by Geert.
 
use strict;
use Irssi;
 
use vars qw($VERSION %IRSSI);
 
$VERSION = '1.1';
%IRSSI = (
  authors => 'Matt "f0rked" Sparks',
  contact => 'ms+irssi@quadpoint.org',
  name => 'hilight_notice',
  description => 'hilight status window on notices',
  license => 'GPLv2',
  url => 'http://quadpoint.org',
  changed => '2006-12-15',
);
 
 
sub hilight_notice
{
  my ($dest, $text, $stripped) = @_;
  my $server = $dest->{server};
 
  return if (!$server || !($dest->{level} & MSGLEVEL_NOTICES));
 
  # Change the message level to level used by PRIVMSGs
  my $witem = $server->window_item_find($dest->{target});
  $witem->print($text, MSGLEVEL_MSGS) if $witem;
  Irssi::print($text, MSGLEVEL_MSGS) if !$witem;
  Irssi::signal_stop();
}
 
 
Irssi::signal_add("print text", "hilight_notice");
 
Blog | Support | Training | Contact | API | Status | Twitter | Help | Security
© 2010 GitHub Inc. All rights reserved. | Terms of Service | Privacy Policy
Powered by the Dedicated Servers and
Cloud Computing of Rackspace Hosting®
Dedicated Server