summaryrefslogtreecommitdiffstats
path: root/WISH_LIST
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2010-02-22 23:02:11 -0500
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2010-02-22 23:02:11 -0500
commitd18148e7fe39fed1e5f46f4d65af83229ed009bb (patch)
treef629303c98761ad5ea1830abfbe8af7e7eda49bb /WISH_LIST
parent2390d0191c52ae585cda3f1ae6f884cc58639025 (diff)
parent7b447646ba1867c67edaa1c2df0074f0d6d05b2c (diff)
downloadaskbot-d18148e7fe39fed1e5f46f4d65af83229ed009bb.tar.gz
askbot-d18148e7fe39fed1e5f46f4d65af83229ed009bb.tar.bz2
askbot-d18148e7fe39fed1e5f46f4d65af83229ed009bb.zip
merged joseph's branch
Diffstat (limited to 'WISH_LIST')
-rw-r--r--WISH_LIST14
1 files changed, 14 insertions, 0 deletions
diff --git a/WISH_LIST b/WISH_LIST
index 6b106875..3df3c307 100644
--- a/WISH_LIST
+++ b/WISH_LIST
@@ -1,5 +1,6 @@
* The wonder bar (integrated the search / ask functionality)
* The authentication system ???
+* allow multiple logins to the same account
* allow multiple logins to the same account
* more advanced templating/skinning system
* per-tag email subscriptions
@@ -8,3 +9,16 @@
* drill-down mode for navigation by tags
* improved admin console
* sort out mess with profile - currently we patch django User
+
+* 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')),
+