1 * The wonder bar (integrated the search / ask functionality)
\r 
   2 * The authentication system ???
\r 
   3 * allow multiple logins to the same account
 
   4 * allow multiple logins to the same account
\r 
   5 * more advanced templating/skinning system
\r 
   6 * per-tag email  subscriptions
\r 
   7 * view for personalized news on the site
\r 
   8 * a little flag popping when there are news
\r 
   9 * drill-down mode for navigation by tags
\r 
  10 * improved admin console
\r 
  11 * sort out mess with profile - currently we patch django User
\r 
  13 * Some functionality should be moved out of the forums app, in the case
 
  14 that the forum app is restricted only to authenticated users:
 
  16         (r'^%s/$' % _('signin/'), 'django_authopenid.views.signin'),
 
  17         url(r'^%s$' % _('about/'), app.about, name='about'),
 
  18         url(r'^%s$' % _('faq/'), app.faq, name='faq'),
 
  19         url(r'^%s$' % _('privacy/'), app.privacy, name='privacy'),
 
  20         url(r'^%s$' % _('logout/'), app.logout, name='logout'),
 
  21         url(r'^%s$' % _('feedback/'), app.feedback, name='feedback'),
 
  22         (r'^%sfb/' % _('account/'),  include('fbconnect.urls')),
 
  23         (r'^%s' % _('account/'), include('django_authopenid.urls')),