Page not found (404)

Request Method: GET
Request URL: http://www.martin-geber.com/weblog/2005/November/

Using the URLconf defined in pyMartin.urls, Django tried these URL patterns, in this order:

  1. ^$
  2. ^weblog/ ^$
  3. ^weblog/ ^(?P<year>\d{4})/$
  4. ^weblog/ ^(?P<year>\d{4})/(?P<month>\d{2})/$
  5. ^weblog/ ^(?P<year>\d{4})/(?P<month>\d{2})/(?P<day>\w{2})/$
  6. ^weblog/ ^(?P<year>\d{4})/(?P<month>\d{2})/(?P<day>\w{1,2})/(?P<slug>[-\w]+)/$
  7. ^weblog/ ^(?P<year>\d{4})/(?P<month>\d{2})/(?P<day>\w{1,2})/(?P<slug>[-\w]+)/trackback/$
  8. ^weblog/ ^categories/$
  9. ^weblog/ ^category/(?P<slug>[-\w]+)/$
  10. ^gallery/
  11. ^portfolio/
  12. ^comments/
  13. ^contact/
  14. ^feeds/(?P<url>.*)\.xml$
  15. ^sitemap.xml$
  16. ^sitemap-(?P<section>.+).xml$
  17. ^admin/filebrowser/
  18. ^admin/
  19. ^i18n/
  20. ^res/(?P<path>.*)$
  21. ^(?P<year>\d{4})/(?P<month>\d{2})/(?P<day>\w{1,2})/(?P<slug>[-\w]+)/$
  22. ^feed/atom/$

The current URL, weblog/2005/November/, didn't match any of these.

You're seeing this error because you have DEBUG = True in your Django settings file. Change that to False, and Django will display a standard 404 page.