web/hgbook/urls.py
author amit@thunder
Mon, 25 Jan 2010 18:56:45 +0530
changeset 0 8083d21c0020
permissions -rwxr-xr-x
The first commit of all the required files for the review app
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     1
import os, sys
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     2
from django.conf.urls.defaults import *
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     3
import hgbook.comments.feeds as feeds
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     4
from django.contrib import admin
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     5
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     6
admin.autodiscover()
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     7
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     8
feeds = {
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     9
    'comments': feeds.Comments,
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    10
    }
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    11
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    12
urlpatterns = patterns('',
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    13
    (r'^comments/', include('hgbook.comments.urls')),
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    14
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    15
    (r'^feeds/(?P<url>.*)/$', 'django.contrib.syndication.views.feed',
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    16
     {'feed_dict': feeds}),          
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    17
    (r'^$', 'hgbook.comments.views.index'), 
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    18
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    19
    (r'^search/', 'hgbook.comments.views.search'), 
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    20
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    21
    # Only uncomment this for local testing without Apache.
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    22
     (r'^html/(?P<path>.*)$', 'django.views.static.serve',
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    23
     {'document_root': os.path.realpath(os.path.dirname(
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    24
        sys.modules[__name__].__file__) + '/../html/')}),
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    25
     (r'^support/(?P<path>.*)$', 'django.views.static.serve',
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    26
     {'document_root': os.path.realpath(os.path.dirname(
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    27
        sys.modules[__name__].__file__) + '/../support/')}),
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    28
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    29
    # Uncomment this for admin:
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    30
    (r'^admin/(.*)', admin.site.root),
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    31
)