Commit cdfb254d2d34c222b6191ea18e66c725b0522c5f
1 parent
b67288b5
Exists in
master
and in
39 other branches
Adding only relative url dispatching for noosfero
Signed-off-by: Macartur Sousa <macartur.sc@gmail.com>
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
colab/proxy/noosfero/urls.py
@@ -6,5 +6,5 @@ from .views import NoosferoProxyView | @@ -6,5 +6,5 @@ from .views import NoosferoProxyView | ||
6 | 6 | ||
7 | urlpatterns = patterns('', | 7 | urlpatterns = patterns('', |
8 | # Noosfero URLs | 8 | # Noosfero URLs |
9 | - url(r'^social/(?P<path>.*)$', NoosferoProxyView.as_view()), | 9 | + url(r'^(?P<path>.*)$', NoosferoProxyView.as_view()), |
10 | ) | 10 | ) |