Changeset 864

Show
Ignore:
Timestamp:
10/30/07 08:40:52 (6 years ago)
Author:
tokuhirom
Message:

lang/perl/mobirc: user should set irc->incode.

Location:
lang/perl/mobirc/trunk/mobirc
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/mobirc/trunk/mobirc/config.yaml.sample

    r858 r864  
    1111  username: netwatcher 
    1212  # password: netwatch 
    13   # incode: utf-8 
     13  incode: utf-8 
    1414 
    1515httpd: 
  • lang/perl/mobirc/trunk/mobirc/lib/Mobirc/ConfigLoader.pm

    r858 r864  
    1919                    required => 1, 
    2020                }, 
    21                 incode => { type => 'str', }, 
     21                incode => { 
     22                    type     => 'str', 
     23                    required => 1, 
     24                }, 
    2225                nick   => { 
    2326                    type     => 'str', 
  • lang/perl/mobirc/trunk/mobirc/mobirc

    r859 r864  
    4343$config->{irc}->{ping_delay} ||= 30; 
    4444$config->{irc}->{reconnect_delay} ||= 10; 
    45 $config->{irc}->{incode} ||= 'utf8'; 
    4645$config->{httpd}->{charset} ||= 'cp932'; 
    4746$config->{httpd}->{root} ||= '/';