From 20a7ce5657bf3d8683bdb4f9b860dbad044fb2f3 Mon Sep 17 00:00:00 2001 From: Evgeny Fadeev Date: Tue, 4 Aug 2009 23:25:57 -0400 Subject: included changes by Adolfo and Chaitanya and found temporary fix for languages --- urls.py | 128 ++++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 64 insertions(+), 64 deletions(-) (limited to 'urls.py') diff --git a/urls.py b/urls.py index a219fd44..802d401c 100644 --- a/urls.py +++ b/urls.py @@ -1,64 +1,64 @@ -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'), - (r'^i18n/', include('django.conf.urls.i18n')), -) +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'), + (r'^i18n/', include('django.conf.urls.i18n')), +) -- cgit v1.2.3-1-g7c22