For now, allow all characters in stream names.

We've had multiple requests from MIT zephyr users to allow
non-alphanumeric stream names, and we haven't decided what we want to
allow, so for now allow everything.

Note that the web client and mirror script limit stream names to 30
characters, which is our database limit.

(imported from commit 2acb5ee04e5ee7c40031ac831e12d09d04bbb2e6)
This commit is contained in:
Jessica McKellar 2012-11-07 15:05:50 -05:00
parent 0489154cd7
commit c29eede9d0

View file

@ -512,7 +512,7 @@ web interface.
print print
def valid_stream_name(name): def valid_stream_name(name):
return re.match(r'^[\w.][\w. -]*$', name, flags=re.UNICODE) return True
def parse_zephyr_subs(verbose=False): def parse_zephyr_subs(verbose=False):
zephyr_subscriptions = set() zephyr_subscriptions = set()