diff options
author | Vanilla I. Shu <vanilla@FreeBSD.org> | 2009-04-02 07:23:41 +0000 |
---|---|---|
committer | Vanilla I. Shu <vanilla@FreeBSD.org> | 2009-04-02 07:23:41 +0000 |
commit | 0c1ac175c872445e25db1cf10b350d159e2a2f3e (patch) | |
tree | 56711286955df2a5b4f2a95f2138cb2cf93ccc46 /chinese/irssi/files | |
parent | a1c9f80e311984aae08f7d387e2ff93c10a8ca59 (diff) |
Notes
Diffstat (limited to 'chinese/irssi/files')
-rw-r--r-- | chinese/irssi/files/patch-irssi.conf | 54 | ||||
-rw-r--r-- | chinese/irssi/files/patch-utf8_break | 10 |
2 files changed, 48 insertions, 16 deletions
diff --git a/chinese/irssi/files/patch-irssi.conf b/chinese/irssi/files/patch-irssi.conf index 079015a7b946..b0175770ce30 100644 --- a/chinese/irssi/files/patch-irssi.conf +++ b/chinese/irssi/files/patch-irssi.conf @@ -1,16 +1,18 @@ ---- irssi.conf.orig 2007-10-06 17:40:40.000000000 +0800 -+++ irssi.conf 2008-03-03 23:00:55.000000000 +0800 -@@ -1,54 +1,14 @@ +--- irssi.conf.orig 2009-04-01 05:02:52.000000000 +0800 ++++ irssi.conf 2009-04-02 11:32:32.000000000 +0800 +@@ -1,86 +1,14 @@ servers = ( -- { address = "irc.stealth.net"; chatnet = "IRCnet"; port = "6668"; }, +- { address = "eu.irc6.net"; chatnet = "IRCnet"; port = "6667"; }, +- { address = "irc.open-ircnet.net"; chatnet = "IRCnet"; port = "6667"; }, - { address = "irc.efnet.org"; chatnet = "EFNet"; port = "6667"; }, -- { -- address = "irc.undernet.org"; -- chatnet = "Undernet"; -- port = "6667"; -- }, +- { address = "irc.undernet.org"; chatnet = "Undernet"; port = "6667"; }, - { address = "irc.dal.net"; chatnet = "DALnet"; port = "6667"; }, - { address = "irc.quakenet.org"; chatnet = "QuakeNet"; port = "6667"; }, +- { address = "irc.oftc.net"; chatnet = "OFTC"; port = "6667"; }, +- { address = "irc.gamesurge.net"; chatnet = "GameSurge"; port = "6667"; }, +- { address = "irc.webchat.org"; chatnet = "WebChat"; port = "6667"; }, +- { address = "irc.rizon.net"; chatnet = "Rizon"; port = "6667"; }, +- { address = "irc.link-net.org"; chatnet = "LinkNet"; port = "6667"; }, - { address = "silc.silcnet.org"; chatnet = "SILC"; port = "706"; } + { address = "chat.ap.freenode.net"; chatnet = "BSDChat"; port = "6667"; }, + { address = "chat.us.freenode.net"; chatnet = "BSDChat"; port = "6667"; } @@ -48,6 +50,36 @@ - max_msgs = "3"; - max_whois = "30"; - }; +- OFTC = { +- type = "IRC"; +- max_kicks = "1"; +- max_msgs = "3"; +- max_whois = "30"; +- }; +- GameSurge = { +- type = "IRC"; +- max_kicks = "1"; +- max_msgs = "3"; +- max_whois = "30"; +- }; +- WebChat = { +- type = "IRC"; +- max_kicks = "1"; +- max_msgs = "3"; +- max_whois = "30"; +- }; +- Rizon = { +- type = "IRC"; +- max_kicks = "1"; +- max_msgs = "3"; +- max_whois = "30"; +- }; +- LinkNet = { +- type = "IRC"; +- max_kicks = "1"; +- max_msgs = "3"; +- max_whois = "30"; +- }; - SILC = { type = "SILC"; }; + BSDChat = { type = "IRC"; max_kicks = 4; max_modes = 6; max_msgs = 3; }; }; @@ -59,7 +91,7 @@ ); aliases = { -@@ -210,3 +170,14 @@ +@@ -242,3 +170,14 @@ }; }; }; @@ -67,7 +99,7 @@ +settings = { + core = { + recode_fallback = "UTF-8"; -+ recode_out_default_charset = "UTF-8"; ++ recode_out_default_charset = "UTF-8"; + recode_transliterate = "yes"; + }; + "fe-common/core" = { diff --git a/chinese/irssi/files/patch-utf8_break b/chinese/irssi/files/patch-utf8_break index 436eaf88c686..c946e76bfabf 100644 --- a/chinese/irssi/files/patch-utf8_break +++ b/chinese/irssi/files/patch-utf8_break @@ -1,11 +1,11 @@ ---- src/fe-text/textbuffer-view.c.orig Mon Jul 31 06:28:09 2006 -+++ src/fe-text/textbuffer-view.c Mon Jul 31 06:28:19 2006 -@@ -255,7 +255,7 @@ +--- src/fe-text/textbuffer-view.c.orig 2009-04-01 05:02:51.000000000 +0800 ++++ src/fe-text/textbuffer-view.c 2009-04-02 11:36:37.000000000 +0800 +@@ -257,7 +257,7 @@ continue; } -- if (!view->utf8 && char_len > 1) { -+ if (char_len > 1) { +- if (!view->utf8 && char_width > 1) { ++ if (char_width > 1) { last_space = xpos; last_space_ptr = next_ptr; last_color = color; |