]> git.openstreetmap.org Git - osqa.git/blobdiff - WISH_LIST
Added title for login page and changed prompt for "oppurtunity", may still be in...
[osqa.git] / WISH_LIST
index 6b106875342f141f1d10fccd0e63f979e0c21f30..3df3c3075f26b4ec12858f916b549aee1f9579d7 100644 (file)
--- a/WISH_LIST
+++ b/WISH_LIST
@@ -1,5 +1,6 @@
 * The wonder bar (integrated the search / ask functionality)\r
 * The authentication system ???\r
+* allow multiple logins to the same account
 * allow multiple logins to the same account\r
 * more advanced templating/skinning system\r
 * per-tag email  subscriptions\r
@@ -8,3 +9,16 @@
 * drill-down mode for navigation by tags\r
 * improved admin console\r
 * sort out mess with profile - currently we patch django User\r
+
+* 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')),
+