(r'^(?:index/?)?$', 'geonode.views.index'),
(r'^(?P<page>help)/?$', 'geonode.views.static'),
(r'^developer/?$', 'geonode.views.developer'),
url(r'^lang\.js$', 'django.views.generic.simple.direct_to_template',
{'template': 'lang.js', 'mimetype': 'text/javascript'}, 'lang'),
(r'^maps/', include('geonode.maps.urls'))
I know that a simple url syntax like this,
url(r'^data/$', 'geonode.maps.views.browse_data')
implies, that it will execute the function browse_data in views.py in the maps directory, inside the geonode dir.
But not sure what the above urls imply. I am absolutely new to Django so can u explain in simple terms.
--
Thanks & Regards
Smaran Harihar