Changeset 484
- Timestamp:
- 03/01/05 21:22:38 (4 years ago)
- Files:
-
- trunk/wifidog/ChangeLog (modified) (1 diff)
- trunk/wifidog/src/http.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wifidog/ChangeLog
r481 r484 1 1 # $Header$ 2 3 2005-03-01 Mina Naguib <mina@ilesansfil.org> 4 * Minor visual tweaks to the web interface 5 2 6 2005-03-01 Philippe April <philippe@ilesansfil.org> 3 7 * Tagged v1_1_0_beta3 trunk/wifidog/src/http.c
r479 r484 208 208 httpdOutput(r, "<head>\n"); 209 209 httpdPrintf(r, "<title>%s</title>\n", title); 210 httpdPrintf(r, "<meta HTTP-EQUIV='Pragma' CONTENT='no-cache'>\n"); 210 211 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 213 216 httpdOutput(r, "<tr>\n"); 217 214 218 httpdOutput(r, "<td valign=top align=right width=30%% bgcolor=#e1f5da>\n"); 215 219 httpdOutput(r, " <p>\n"); … … 218 222 httpdOutput(r, "<p>\n"); 219 223 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"); 220 226 httpdOutput(r, "</td>\n"); 227 221 228 httpdOutput(r, "<td valign=top align=left>\n"); 222 229 httpdPrintf(r, "<h1>%s</h1>\n", title); 223 230 httpdOutput(r, "<hr>\n"); 231 224 232 } 225 233 … … 228 236 { 229 237 httpdOutput(r, "</td>\n"); 238 230 239 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 231 252 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 238 254 httpdOutput(r, "</body>\n"); 239 255 httpdOutput(r, "</html>\n");
