Commit 7961b4425b8f7ed88810b570370b8636670f5c8e
1 parent
c9e9c7f0
Exists in
plugin_extra_configs
and in
1 other branch
Fixed urls for Mezuro
Without this, Colab was unable to request assets or any other sub page from Mezuro. This is not the correct fix. The right place to set the url is on: colab/plugins/mezuro/urls.py. But this is not working yet. Notice that we've also identified a bug on the ReverseProxy, which is not repecting the upstream port always trying to request from port 80. Signed off by: Gustavo Jaruga <darksshades@hotmail.com>
Showing
1 changed file
with
1 additions
and
0 deletions
Show diff stats
colab/urls.py
... | ... | @@ -37,6 +37,7 @@ urlpatterns = patterns('', |
37 | 37 | |
38 | 38 | url(r'^trac/', include('colab.plugins.trac.urls')), |
39 | 39 | url(r'^gitlab/', include('colab.plugins.gitlab.urls')), |
40 | + url(r'^mezuro/', include('colab.plugins.mezuro.urls')), | |
40 | 41 | url(r'^social/', include('colab.plugins.noosfero.urls')), |
41 | 42 | url(r'^ci/', include('colab.plugins.jenkins.urls')), |
42 | 43 | ... | ... |