Changeset 150

Show
Ignore:
Timestamp:
10/30/04 23:06:37 (4 years ago)
Author:
jajcus
Message:

- don't limit channel name length here. It is defined in the configuration file.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/jjigw/common.py

    r136 r150  
    3535 
    3636numeric_re=re.compile(r"\d\d\d") 
    37 channel_re=re.compile(r"^[&#+!][^\000 \007 ,:\r\n]{1,49}$") 
     37channel_re=re.compile(r"^[&#+!][^\000 \007 ,:\r\n]$") 
    3838nick_re=re.compile(r"^[a-zA-Z\x5b-\x60\x7b-\x7d\[\]\\`_^{|}][a-zA-Z\x5b-\x60\x7b-\x7d\[\]\\`_^{|}0-9-]*$") 
    3939nick8_re=re.compile(r"^[a-zA-Z\x5b-\x60\x7b-\x7d\[\]\\`_^{|}\x80-\xff][a-zA-Z\x5b-\x60\x7b-\x7d\[\]\\`_^{|}0-9\x80-\xff-]*$")