Commit 0f23221f2d2abee34669e1c5a0226d8b0d861b8c

Authored by Charles Oliveira
Committed by Sergio Oliveira
1 parent e08c8782

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 6  
7 7 urlpatterns = patterns('',
8 8 # Noosfero URLs
9   - url(r'^social/(?P<path>.*)$', NoosferoProxyView.as_view()),
  9 + url(r'^(?P<path>.*)$', NoosferoProxyView.as_view()),
10 10 )
... ...