Optionally use an icon for the home link
authorBernie Innocenti <bernie@codewiz.org>
Wed, 8 Apr 2009 20:25:48 +0000 (22:25 +0200)
committerBernie Innocenti <bernie@codewiz.org>
Wed, 8 Apr 2009 20:25:48 +0000 (22:25 +0200)
geekigeeki.conf.py
geekigeeki.py

index 46d03289ad65ab529593bf92d2ccf69d56b31c32..a920eff1b9ad9c4232c20f9f23aecd74e7ba6605 100644 (file)
@@ -1,5 +1,6 @@
 # Configuration values
 site_name = 'Codewiz'
+site_icon = 'AmigaBoing16x16.png'
 
 # set to None for read-only sites, leave empty ('') to allow anonymous edits
 # otherwise, set to a URL that requires authentication
index c87429bbedf615247ec378b771b93459a206c1f4..081517a64853ee460f3346b59ff04b201d706c8a 100755 (executable)
@@ -151,11 +151,11 @@ def send_title(name, text="Limbo", msg_text=None, msg_type='error', writable=Fal
 
     # Navbar
     print '<div class="nav">'
+    print link_tag('FrontPage', relative_url(site_icon or 'Home'), 'navlink')
     if name:
         print '  <b>' + link_tag('?fullsearch=' + name, text, 'navlink') + '</b> '
     else:
         print '  <b>' + text + '</b> '
-    print ' | ' + link_tag('FrontPage','Home', 'navlink')
     print ' | ' + link_tag('FindPage', 'Find Page', 'navlink')
     if 'history_url' in globals():
         print ' | <a href="' + relative_url(history_url) + '" class="navlink">Recent Changes</a>'
@@ -175,7 +175,7 @@ def send_title(name, text="Limbo", msg_text=None, msg_type='error', writable=Fal
 
     user = remote_user()
     if user != 'AnonymousCoward':
-        print ' | <span class="login"><i>logged in as <b>' + cgi.escape(user) + '</b></i></span>'
+        print ' | <span class="login"><i><b>' + link_tag('User/' + user, user) + '</b></i></span>'
 
     print '<hr /></div>'