from django.conf.urls.defaults import *

urlpatterns = patterns('pycon.apps.maps.views',
    (r'^ajax/tagcomplete/(?P<partial>.+)/$', 'ajax_tagcomplete'),
    (r'^ajax/tagcomplete//$', 'blank'),
    (r'^ajax/tagcomplete/$', 'blank'),
    (r'^ajax/latlonrange/(?P<minlat>-?\d+\.?\d*)/(?P<minlon>-?\d+\.?\d*)/(?P<maxlat>-?\d+\.?\d*)/(?P<maxlon>-?\d+\.?\d*)/(?P<request_tag>[^/]+)?/?$', 'ajax_latlonrange'),
    (r'^ajax/grabperson/(?P<id>\d+)/', 'ajax_grabperson'),
    (r'^$', 'index'),
    (r'^profile/$', 'profile'),
    (r'^profile/submit/$', 'submit'),
)
