Issue 57: dash "-" in subdomain name
Status:  Accepted
Owner:
Reported by asharlohmar, Mar 19, 2009
[Note: this is for reporting issues on the JaikuEngine open source project.
if you are reporting an issue with the jaiku.com service, please send it to
support@jaiku.com]

i wanted to deploy on an appspot account so i've named my app using an dash
ash-dev3
this stoped me from uploading images for my avatar message was "Could not
validate avatar path"


What steps will reproduce the problem?
1. chose an dash name application name for appspot
2. deploy it

to solve it i've changed the validation regexp from common\patterns.py
from
AVATAR_PARTIAL_PATH_RE = r'(default|(?P<nick>#?\w+@[\w\.]+))/(?P<path>.*)'
to 
AVATAR_PARTIAL_PATH_RE =
r'(default|(?P<nick>#?\w+@[\w<b>\-</b>\.]+))/(?P<path>.*)'



Mar 19, 2009
#1 asharlohmar
sorry, the new regexp was
AVATAR_PARTIAL_PATH_RE = r'(default|(?P<nick>#?\w+@[\w\-\.]+))/(?P<path>.*)'

i've put the <b></b> hopeing that \- will show in bold
Apr 22, 2009
Project Member #2 andyster
(No comment was entered for this change.)
Status: Accepted
Owner: andyster
Labels: withpatch