Changeset 484

Show
Ignore:
Timestamp:
03/01/05 21:22:38 (4 years ago)
Author:
minaguib
Message:

Minor visual tweaks to the web interface

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wifidog/ChangeLog

    r481 r484  
    11# $Header$ 
     2 
     32005-03-01 Mina Naguib <mina@ilesansfil.org> 
     4        * Minor visual tweaks to the web interface 
     5 
    262005-03-01 Philippe April <philippe@ilesansfil.org> 
    37        * Tagged v1_1_0_beta3 
  • trunk/wifidog/src/http.c

    r479 r484  
    208208        httpdOutput(r, "<head>\n"); 
    209209        httpdPrintf(r, "<title>%s</title>\n", title); 
     210        httpdPrintf(r, "<meta HTTP-EQUIV='Pragma' CONTENT='no-cache'>\n"); 
    210211        httpdOutput(r, "</head>\n"); 
    211         httpdOutput(r, "<body bgcolor=white text=#628C53 link=blue alink=blue vlink=blue>\n"); 
    212         httpdOutput(r, "<table width=100%% border=0 cellpadding=12>\n"); 
     212        httpdOutput(r, "<body topmargin=0 leftmargin=0 marginwidth=0 marginheight=0 bgcolor=white text=#628C53 link=blue alink=blue vlink=blue>\n"); 
     213 
     214        httpdOutput(r, "<table width=100%% height=100%% border=0 cellpadding=12 cellspacing=5>\n"); 
     215 
    213216        httpdOutput(r, "<tr>\n"); 
     217 
    214218        httpdOutput(r, "<td valign=top align=right width=30%% bgcolor=#e1f5da>\n"); 
    215219        httpdOutput(r, "&nbsp;<p>\n"); 
     
    218222        httpdOutput(r, "<p>\n"); 
    219223        httpdOutput(r, "<a href='/wifidog/about'>About WiFiDog</a>\n"); 
     224        httpdOutput(r, "<p>\n"); 
     225        httpdOutput(r, "<a href='http://www.ilesansfil.org/wiki/WiFiDog'>WiFiDog's homepage</a>\n"); 
    220226        httpdOutput(r, "</td>\n"); 
     227 
    221228        httpdOutput(r, "<td valign=top align=left>\n"); 
    222229        httpdPrintf(r, "<h1>%s</h1>\n", title); 
    223230        httpdOutput(r, "<hr>\n"); 
     231 
    224232} 
    225233 
     
    228236{ 
    229237        httpdOutput(r, "</td>\n"); 
     238 
    230239        httpdOutput(r, "</tr>\n"); 
     240 
     241        httpdOutput(r, "<tr>\n"); 
     242 
     243        httpdOutput(r, "<td colspan=2 height=1 valign=bottom align=center>\n"); 
     244        httpdOutput(r, "<hr>\n"); 
     245        httpdOutput(r, "<font size=1>\n"); 
     246        httpdOutput(r, "Copyright (C) 2004-2005.  This software is released under the GNU GPL license.\n"); 
     247        httpdOutput(r, "</font>\n"); 
     248        httpdOutput(r, "</td>\n"); 
     249 
     250        httpdOutput(r, "</tr>\n"); 
     251 
    231252        httpdOutput(r, "</table>\n"); 
    232         httpdOutput(r, "<hr>\n"); 
    233         httpdOutput(r, "<center><font size=1>\n"); 
    234         httpdOutput(r, "Copyright (C) 2004-2005.  This software is released under the GNU GPL license.\n"); 
    235         httpdOutput(r, "<p>\n"); 
    236         httpdOutput(r, "For more information visit <a href='http://www.ilesansfil.org/wiki/WiFiDog'>http://www.ilesansfil.org/wiki/WiFiDog</a>\n"); 
    237         httpdOutput(r, "</font></center>\n"); 
     253 
    238254        httpdOutput(r, "</body>\n"); 
    239255        httpdOutput(r, "</html>\n");