SEESenv/web/hgbook/urls.py
author amit@thunder
Sun, 21 Feb 2010 23:32:34 +0530
changeset 11 a7bd4bca6f6e
parent 8 d7db9561766e
child 13 ead1752a58a8
permissions -rwxr-xr-x
testing
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('',
11
a7bd4bca6f6e testing
amit@thunder
parents: 8
diff changeset
    13
    (r'^/comments/', include('hgbook.comments.urls')),
0
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    14
11
a7bd4bca6f6e testing
amit@thunder
parents: 8
diff changeset
    15
    (r'^/feeds/(?P<url>.*)/$', 'django.contrib.syndication.views.feed',
0
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    16
     {'feed_dict': feeds}),          
11
a7bd4bca6f6e testing
amit@thunder
parents: 8
diff changeset
    17
    (r'^/index$', 'hgbook.comments.views.index'), 
0
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    18
11
a7bd4bca6f6e testing
amit@thunder
parents: 8
diff changeset
    19
    (r'^/search/', 'hgbook.comments.views.search'), 
0
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.
11
a7bd4bca6f6e testing
amit@thunder
parents: 8
diff changeset
    22
     (r'^/html/(?P<path>.*)$', 'django.views.static.serve',
0
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/')}),
11
a7bd4bca6f6e testing
amit@thunder
parents: 8
diff changeset
    25
     (r'^/support/(?P<path>.*)$', 'django.views.static.serve',
0
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
)