summaryrefslogtreecommitdiff
path: root/base_urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'base_urls.py')
-rw-r--r--base_urls.py67
1 files changed, 0 insertions, 67 deletions
diff --git a/base_urls.py b/base_urls.py
deleted file mode 100644
index 37bfa87..0000000
--- a/base_urls.py
+++ /dev/null
@@ -1,67 +0,0 @@
-from django.conf.urls.defaults import *
-from django.contrib import admin
-from django.views.generic import list_detail
-from django.views.generic.simple import redirect_to,direct_to_template
-from django.contrib.sitemaps import FlatPageSitemap
-from django.conf import settings
-
-from blog.models import BlogSitemap,LatestFull
-from locations.models import WritingbyLocationSitemap
-from links.models import LatestLinks
-from photos.models import PhotoGallerySitemap
-from projects.models.base import ProjectSitemap
-
-admin.autodiscover()
-
-
-sitemaps = {
- 'blog': BlogSitemap,
- 'photos': PhotoGallerySitemap,
- 'projects': ProjectSitemap
-}
-feeds = {
- 'writing': LatestFull,
- 'fblinks' : LatestLinks,
-}
-
-if settings.DEVELOPMENT:
- urlpatterns = patterns('',
- (r'^media/admin/(?P<path>.*)$', 'django.views.static.serve', {'document_root': settings.MEDIA_ROOT+'/admin'}),
- (r'^media/(?P<path>.*)$', 'django.views.static.serve', {'document_root': settings.MEDIA_ROOT}),
- (r'^images/(?P<path>.*)$', 'django.views.static.serve', {'document_root': settings.IMAGES_ROOT}),
- )
-else:
- urlpatterns = patterns('')
-
-# old page redirects
-urlpatterns += patterns('',
- (r'^2003/nov/02/take-me-your-leader-ii/$', direct_to_template, {'template': 'static/oldcontent.html'}),
- (r'^2003/aug/07/take-me-your-leader/$', direct_to_template, {'template': 'static/oldcontent.html'}),
- (r'^2004/jan/07/david-foster-wallace-infinity/$', direct_to_template, {'template': 'static/oldcontent.html'}),
-)
-
-urlpatterns += patterns('',
- (r'^admin/doc/', include('django.contrib.admindocs.urls')),
- (r'^admin/filebrowser/', include('filebrowser.urls')),
- (r'^admin/', include(admin.site.urls),),
- (r'^grappelli/', include('grappelli.urls')),
- (r'^feeds/(?P<url>.*)/$', 'django.contrib.syndication.views.feed', {'feed_dict': feeds}),
- (r'^robots.txt$', direct_to_template, {'template': 'archives/robots.html'}),
- (r'^googleb11655cd59dacf3c.html$', direct_to_template, {'template': 'static/gverify.html'}),
- (r'^contact/', direct_to_template, {'template': 'details/contact.html'}),
- (r'^sitemap.xml$', 'django.contrib.sitemaps.views.sitemap', {'sitemaps': sitemaps}),
- (r'^writing/', include('blog.urls')),
- (r'^projects/', include('projects.urls')),
- #Entry detail i.e. /year/month/day/my-title/
- (r'(?P<year>\d{4})/(?P<month>[a-z]{3})/(?P<day>\w{1,2})/(?P<slug>[-\w]+)/$', 'blog.views.entry_detail'),
- # locations
- (r'^locations/', include('locations.urls')),
- (r'^photos/', include('photos.urls')),
- (r'^photo/', include('photos.detail_urls')),
- # map
- (r'^map/', include('locations.urls')),
- #about
- (r'^about/$', 'blog.views.about'), #'blog.views.home'),
- #homepage
- (r'^$', 'blog.views.home'), #'blog.views.home'),
-)