On Tue, Aug 4, 2009 at 1:33 PM, Paulo Almeida
<igcbioinformat...@gmail.com>wrote:

> Hi Karen,
>
> You're right, I had some unnecessary lines that I used only for unittest. I
> commented them out now. Printing response['location'] gives me this:
>
> http://testserver/myflow/experiment/1/
>
> You're also right that there is no Redirect in my view, so I don't know
> where that is coming from. I guess I'll have to figure it out, because it
> seems to be the key to the problem.
>

So it does appear to be APPEND_SLASH that is causing the redirect, since the
only difference between that and what you requested is the added slash on
the end.  Which implies the version without the added slash is not matching
the url pattern you cited:

 (r'^experiment/(?P<experiment_id>\d+)$',
    'bioinformatics.myflow.views.view_experiment'),

even though that pattern doesn't require a trailing slash.  That pattern,
though, also has no 'myflow' component.  Where is that coming from?  There
seems to be more to your url configuration than you have made clear here.

Karen

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to