author | amit@thunder |
Thu, 04 Mar 2010 14:33:38 +0530 | |
changeset 43 | 134b87b382f5 |
parent 17 | abf126e51dbc |
permissions | -rwxr-xr-x |
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 |
} |
17 | 11 |
|
0
8083d21c0020
The first commit of all the required files for the review app
amit@thunder
parents:
diff
changeset
|
12 |
urlpatterns = patterns('', |
14 | 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 |
|
14 | 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}), |
14 | 17 |
(r'^$', 'hgbook.comments.views.index'), |
0
8083d21c0020
The first commit of all the required files for the review app
amit@thunder
parents:
diff
changeset
|
18 |
|
14 | 19 |
(r'^search/', 'hgbook.comments.views.search'), |
16 | 20 |
|
0
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. |
14 | 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/')}), |
14 | 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 |
) |