GMaps related JS changed to use new google namespace.
Google is going to change permanently in the future the way to
load its services, so better stay safe.
Also this commit shows uses of the new melange.js module.
Fixes Issue 634.
from django.conf.urls.defaults import *from django.contrib.databrowse import views# Note: The views in this URLconf all require a 'models' argument,# which is a list of model classes (*not* instances).urlpatterns = patterns('', #(r'^$', views.homepage), #(r'^([^/]+)/([^/]+)/$', views.model_detail), (r'^([^/]+)/([^/]+)/fields/(\w+)/$', views.choice_list), (r'^([^/]+)/([^/]+)/fields/(\w+)/(.*)/$', views.choice_detail), #(r'^([^/]+)/([^/]+)/calendars/(\w+)/$', views.calendar_main), #(r'^([^/]+)/([^/]+)/calendars/(\w+)/(\d{4})/$', views.calendar_year), #(r'^([^/]+)/([^/]+)/calendars/(\w+)/(\d{4})/(\w{3})/$', views.calendar_month), #(r'^([^/]+)/([^/]+)/calendars/(\w+)/(\d{4})/(\w{3})/(\d{1,2})/$', views.calendar_day), #(r'^([^/]+)/([^/]+)/objects/(.*)/$', views.object_detail),)