Ignore:
Timestamp:
05/13/10 16:38:43 (14 years ago)
Author:
Kris Deugau
Message:

/trunk

Migrate body colour and font base defs to CSS, make <head>
sections more consistent. See #3.

Look for local.css so admins can override the default
colours. local.css is ignored on the working root as it
should be entirely a local file. See #14.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

    • Property svn:ignore set to
      local.css
  • trunk/cgi-bin/admin.cgi

    r412 r413  
    4949if ($IPDBacl{$authuser} !~ /A/) {
    5050  print "Content-Type: text/html\n\n".
    51         "<html><head><title>Access denied</title></head>".
    52         qq(<body bgcolor="#ffffff" text="#000000" link="#000000" vlink="#000000" alink="#ff0000">\n).
    53         'Access to this tool is restricted.  Contact <a href="mailto:kdeugau@vianet.ca">Kris</a> '.
    54         "for more information.</body></html>\n";
     51        "<html>\n<head>\n\t<title>Access denied</title>\n".
     52        qq(\t<link rel="stylesheet" type="text/css" href="/ip/ipdb.css">\n).
     53        qq(\t<link rel="stylesheet" type="text/css" href="/ip/local.css">\n).
     54        "</head>\n<body>\n".
     55        qq(Access to this tool is restricted.  Contact <a href="mailto:kdeugau\@vianet.ca">Kris</a> \n).
     56        "for more information.\n</body>\n</html>\n";
    5557  exit;
    5658}
     
    6264        "<html>\n<head>\n\t<title>[IPDB admin tools]</title>\n".
    6365        qq(\t<link rel="stylesheet" type="text/css" href="/ip/ipdb.css">\n).
    64         qq(</head>\n<body bgcolor="#ffffff" text="#000000" link="#000000" vlink="#000000" alink="#ff0000">\n).
     66        qq(\t<link rel="stylesheet" type="text/css" href="/ip/local.css">\n).
     67        "</head>\n<body>\n".
    6568        "<h2>IPDB - Administrative Tools</h2>\n<hr>\n";
    6669
Note: See TracChangeset for help on using the changeset viewer.