From 2acb62174ab2cac9c7a88faafcb5f0a22a54db6f Mon Sep 17 00:00:00 2001 From: Mike Chen Date: Sun, 5 Jul 2009 10:23:06 +0800 Subject: initiliaze git rep --- urls.py | 63 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 urls.py (limited to 'urls.py') diff --git a/urls.py b/urls.py new file mode 100644 index 00000000..89b5127c --- /dev/null +++ b/urls.py @@ -0,0 +1,63 @@ +import os.path +from django.conf.urls.defaults import * +from django.contrib import admin +from forum.views import index +from forum import views as app +from forum.feed import RssLastestQuestionsFeed + +admin.autodiscover() +feeds = { + 'rss': RssLastestQuestionsFeed +} + +APP_PATH = os.path.dirname(__file__) +urlpatterns = patterns('', + (r'^$', index), + (r'^favicon\.ico$', 'django.views.generic.simple.redirect_to', {'url': '/content/images/favicon.ico'}), + (r'^favicon\.gif$', 'django.views.generic.simple.redirect_to', {'url': '/content/images/favicon.gif'}), + (r'^content/(?P.*)$', 'django.views.static.serve', + {'document_root': os.path.join(APP_PATH, 'templates/content').replace('\\','/')} + ), + (r'^upfiles/(?P.*)$', 'django.views.static.serve', + {'document_root': os.path.join(APP_PATH, 'templates/upfiles').replace('\\','/')} + ), + (r'^account/', include('django_authopenid.urls')), + (r'^signin/$', 'django_authopenid.views.signin'), + url(r'^about/$', app.about, name='about'), + url(r'^faq/$', app.faq, name='faq'), + url(r'^privacy/$', app.privacy, name='privacy'), + url(r'^logout/$', app.logout, name='logout'), + url(r'^answers/(?P\d+)/comments/$', app.answer_comments, name='answer_comments'), + url(r'^answers/(?P\d+)/edit/$', app.edit_answer, name='edit_answer'), + url(r'^answers/(?P\d+)/revisions/$', app.answer_revisions, name='answer_revisions'), + url(r'^questions/$', app.questions, name='questions'), + url(r'^questions/ask/$', app.ask, name='ask'), + url(r'^questions/unanswered/$', app.unanswered, name='unanswered'), + url(r'^questions/(?P\d+)/edit/$', app.edit_question, name='edit_question'), + url(r'^questions/(?P\d+)/close/$', app.close, name='close'), + url(r'^questions/(?P\d+)/reopen/$', app.reopen, name='reopen'), + url(r'^questions/(?P\d+)/answer/$', app.answer, name='answer'), + url(r'^questions/(?P\d+)/vote/$', app.vote, name='vote'), + url(r'^questions/(?P\d+)/revisions/$', app.question_revisions, name='question_revisions'), + url(r'^questions/(?P\d+)/comments/$', app.question_comments, name='question_comments'), + url(r'^questions/(?P\d+)/comments/(?P\d+)/delete/$', app.delete_question_comment, name='delete_question_comment'), + url(r'^answers/(?P\d+)/comments/(?P\d+)/delete/$', app.delete_answer_comment, name='delete_answer_comment'), + #place general question item in the end of other operations + url(r'^questions/(?P\d+)//*', app.question, name='question'), + (r'^tags/$', app.tags), + (r'^tags/(?P[^/]+)/$', app.tag), + (r'^users/$',app.users), + url(r'^users/(?P\d+)/edit/$', app.edit_user, name='edit_user'), + url(r'^users/(?P\d+)//*', app.user, name='user'), + url(r'^badges/$',app.badges, name='badges'), + url(r'^badges/(?P\d+)//*', app.badge, name='badge'), + url(r'^messages/markread/$',app.read_message, name='read_message'), + # (r'^admin/doc/', include('django.contrib.admindocs.urls')), + (r'^nimda/(.*)', admin.site.root), + (r'^feeds/(?P.*)/$', 'django.contrib.syndication.views.feed', {'feed_dict': feeds}), + (r'^upload/$', app.upload), + url(r'^books/$', app.books, name='books'), + url(r'^books/ask/(?P[^/]+)/$', app.ask_book, name='ask_book'), + url(r'^books/(?P[^/]+)/$', app.book, name='book'), + url(r'^search/$', app.search, name='search'), +) -- cgit v1.2.3-1-g7c22