summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoseph Turian <turian@gmail.com>2010-02-17 16:24:27 -0500
committerJoseph Turian <turian@gmail.com>2010-02-17 16:24:27 -0500
commit97df5d82ac2d6fc4dfe7c3f51c933dcc61792b0f (patch)
tree65f20eaf4113cd3537b66a0bc358d9cb2aa32d28
parentb2d9fb47fd657d2da515d7bb88bcc0fb2a9b5785 (diff)
downloadaskbot-97df5d82ac2d6fc4dfe7c3f51c933dcc61792b0f.tar.gz
askbot-97df5d82ac2d6fc4dfe7c3f51c933dcc61792b0f.tar.bz2
askbot-97df5d82ac2d6fc4dfe7c3f51c933dcc61792b0f.zip
Added a new TODO
-rw-r--r--TODO19
1 files changed, 16 insertions, 3 deletions
diff --git a/TODO b/TODO
index 7c37071d..28b220dc 100644
--- a/TODO
+++ b/TODO
@@ -1,3 +1,16 @@
-* per-tag email subscriptions
-* make sorting tabs work in question search - done
-* allow multiple logins to the same account
+* per-tag email subscriptions
+* make sorting tabs work in question search - done
+* allow multiple logins to the same account
+
+* Some functionality should be moved out of the forums app, in the case
+that the forum app is restricted only to authenticated users:
+
+ (r'^%s/$' % _('signin/'), 'django_authopenid.views.signin'),
+ url(r'^%s$' % _('about/'), app.about, name='about'),
+ url(r'^%s$' % _('faq/'), app.faq, name='faq'),
+ url(r'^%s$' % _('privacy/'), app.privacy, name='privacy'),
+ url(r'^%s$' % _('logout/'), app.logout, name='logout'),
+ url(r'^%s$' % _('feedback/'), app.feedback, name='feedback'),
+ (r'^%sfb/' % _('account/'), include('fbconnect.urls')),
+ (r'^%s' % _('account/'), include('django_authopenid.urls')),
+