Hi all,

  After upgrading to tg2.1 I stumble on the following problem: using
URL with dot character in it sometime lead to unexpected results. Here
is my controller code:


    @expose()
    def fs(self, *args, **kw):
            print args, kw

when I access it with http://127.0.0.1:8080/fs/somefile.w - I am
getting expected output:

 ('somefile.w',) {}


but some url's with '.' in it does not works like that. For example if
I using http://127.0.0.1:8080/fs/somefile.p -  I am getting this
output (notice the absence of '.p' part):

('somefile',) {}


  Is this expected behavior? Or am I doing something wrong?

  Thank you in advance,

Erni.

-- 
You received this message because you are subscribed to the Google Groups 
"TurboGears" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/turbogears?hl=en.

Reply via email to