<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
</head>
<body bgcolor="#FFFFFF" text="#000000">
Hi all, <br>
<br>
I've been installing the django-wiki app in my template project.
Everything was ok, but it looks that when it comes to create new
articles the url below catched everything, so slugs conflict with
the url from geonode.<br>
<br>
# Featured Maps Pattens<br>
urlpatterns += patterns('',<br>
(r'^maps/(?P<site>[A-Za-z0-9_\-]+)/$',
'geonode.maps.views.featured_map'),<br>
(r'^maps/(?P<site>[A-Za-z0-9_\-]+)/info$',
'geonode.maps.views.featured_map_info'),<br>
)<br>
<br>
I've been in contact with the creator of django-wiki and looks like
the url configuration from geonode should be more specific just to
avoid this kind of situations. Do you think it could be better to
change the url from above or should i find out how to deal with url
in the wiki app. <br>
<br>
urlpatterns = patterns('',<br>
<br>
# Static pages<br>
# url(r'^$', 'polls.views.index', name='index'),<br>
url(r'^demo/$', 'demo.views.index'),<br>
url(r'^notifications/', get_nyt_pattern()),<br>
<b>url(r'^wiki/', get_wiki_pattern()),</b><br>
) + urlpatterns<br>
<br>
I temporally change the geonode url patterns to this<br>
<br>
urlpatterns += patterns('',<br>
(r'^maps/(?P<site>[A-Za-z0-9_\-]+)/$',
'geonode.maps.views.featured_map'),<br>
(r'^maps/(?P<site>[A-Za-z0-9_\-]+)/info$',
'geonode.maps.views.featured_map_info'),<br>
)<br>
<br>
but not sure if will break geonode. Also i don't want to change the
master branch...<br>
<br>
<br>
Thank you<br>
<br>
Jesús<br>
</body>
</html>