/[weechat]/weechat/src/common/weeconfig.c
ViewVC logotype

Diff of /weechat/src/common/weeconfig.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.83 by flashcode, Fri Oct 21 13:59:55 2005 UTC revision 1.84 by flashcode, Sat Oct 22 14:04:27 2005 UTC
# Line 420  t_config_option weechat_options_colors[] Line 420  t_config_option weechat_options_colors[]
420    { "col_input_delimiters", N_("color for input text (delimiters)"),    { "col_input_delimiters", N_("color for input text (delimiters)"),
421      N_("color for input text (delimiters)"),      N_("color for input text (delimiters)"),
422      OPTION_TYPE_COLOR, 0, 0, 0,      OPTION_TYPE_COLOR, 0, 0, 0,
423      "lightgreen", NULL, &cfg_col_input_delimiters, NULL, &config_change_color },      "white", NULL, &cfg_col_input_delimiters, NULL, &config_change_color },
424    { "col_input_bg", N_("background for input window"),    { "col_input_bg", N_("background for input window"),
425      N_("background for input window"),      N_("background for input window"),
426      OPTION_TYPE_COLOR, 0, 0, 0,      OPTION_TYPE_COLOR, 0, 0, 0,
# Line 677  int cfg_dcc_auto_accept_files; Line 677  int cfg_dcc_auto_accept_files;
677  int cfg_dcc_auto_accept_chats;  int cfg_dcc_auto_accept_chats;
678  int cfg_dcc_timeout;  int cfg_dcc_timeout;
679  int cfg_dcc_blocksize;  int cfg_dcc_blocksize;
680    char *cfg_dcc_port_range;
681    char *cfg_dcc_own_ip;
682  char *cfg_dcc_download_path;  char *cfg_dcc_download_path;
683  char *cfg_dcc_upload_path;  char *cfg_dcc_upload_path;
684  int cfg_dcc_convert_spaces;  int cfg_dcc_convert_spaces;
# Line 700  t_config_option weechat_options_dcc[] = Line 702  t_config_option weechat_options_dcc[] =
702      N_("block size for dcc packets in bytes (default: 65536)"),      N_("block size for dcc packets in bytes (default: 65536)"),
703      OPTION_TYPE_INT, 1024, 102400, 65536,      OPTION_TYPE_INT, 1024, 102400, 65536,
704      NULL, NULL, &cfg_dcc_blocksize, NULL, &config_change_noop },      NULL, NULL, &cfg_dcc_blocksize, NULL, &config_change_noop },
705      { "dcc_port_range", N_("allowed ports for outgoing dcc"),
706        N_("restricts outgoing dcc to use only ports in the given range "
707           "(useful for NAT) (syntax: a single port, ie. 5000 or a port "
708           "range, ie. 5000-5015, empty value means any port)"),
709        OPTION_TYPE_STRING, 0, 0, 0, "",
710        NULL, NULL, &cfg_dcc_port_range, &config_change_noop },
711      { "dcc_own_ip", N_("IP address for outgoing dcc"),
712        N_("IP or DNS address used for outgoing dcc "
713           "(if empty, local interface IP is used)"),
714        OPTION_TYPE_STRING, 0, 0, 0, "",
715        NULL, NULL, &cfg_dcc_own_ip, &config_change_noop },
716    { "dcc_download_path", N_("path for incoming files with dcc"),    { "dcc_download_path", N_("path for incoming files with dcc"),
717      N_("path for writing incoming files with dcc (default: user home)"),      N_("path for writing incoming files with dcc (default: user home)"),
718      OPTION_TYPE_STRING, 0, 0, 0,      OPTION_TYPE_STRING, 0, 0, 0,

Legend:
Removed from v.1.83  
changed lines
  Added in v.1.84

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26