Some JavaScript frameworks(e.g. AngularJS) remove the ending slash before making a request.
If APPEND_SLASH = True, then the API would not be consumable by AngurlarJS.
Would it be a good idea to add options to disable the APPEND_SLASH behaviour per url(), or per a base_uri?
Example 1:
settings.py:
APPEND_SLASH = True
urls.py:
url(r'^profile', views.profile, name='profile', append_slash=False),
Example 2:
settings.py
APPEND_SLASH_EXCLUDE = ('/api/v1/', '/api/v2/', '/etc/)
What do you think?
If the answer is YES, then would it be too late to push a patch up for inclusion in 1.7?
Thanks,
Val