source: trunk/templates/header.tmpl@ 493

Last change on this file since 493 was 493, checked in by Kris Deugau, 11 years ago

/trunk

Overhaul session handling; pure URL-based sessions are subject to
copy-paste session-stealing. Convert to cookie-based session tracking
instead. This also provides bonuses in terms of inlinks from other
utilities or copy-paste links.
While session-handling was in pieces, add "pick-up-where-I-left-off"
login handling so that logins don't always end up only on the initial
domain list. This is especially handy for copy-paste links.

Also clean up some of the docucomments, use the CGI::Simple object to
do 302 redirects, and bring the revzone default sort field setup into
line with other thing-lists.

File size: 1.3 KB
Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
3 <head>
4 <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
5 <title><TMPL_IF orgname><TMPL_VAR NAME=orgname> - </TMPL_IF>DNS Administration</title>
6 <!-- General stylesheet for most content, all browsers -->
7 <link rel="stylesheet" type="text/css" href="templates/dns.css" />
8
9 <!--
10 Fair warning: this validates according to the DTD above but breaks in IE<7 (at least).
11 Unlike in the body these if/endif constructs don't work for IE6 if
12 fully embedded in proper comment tags. >:(
13 -->
14 <!-- Load a secondary stylesheet for the group tree for IE ... -->
15 <!-- [if IE] -->
16 <link rel="stylesheet" type="text/css" href="templates/grouptree-ie.css" />
17 <!-- [endif] -->
18
19 <!-- ... and now override the IE glop with the nifty CSS-only collapsing tree -->
20 <!-- [if !IE] -->
21 <link rel="stylesheet" type="text/css" href="templates/grouptree.css" />
22 <!-- [endif] -->
23
24 <!-- Custom local stylesheet, if desired -->
25 <link rel="stylesheet" type="text/css" href="local.css" />
26 </head>
27<body>
28<div id="main">
Note: See TracBrowser for help on using the repository browser.