Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Move the content-type meta-tag to right after the head tag. It is reported that this helps browsers to load faster. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
17f12988a09d0cad89fab7d7dc060409 |
User & Date: | drh 2011-12-25 23:06:47.474 |
Context
2011-12-30
| ||
13:35 | Update the requirements.html document to actually show a list of requirements. (check-in: 03b2db4bd8 user: drh tags: trunk) | |
2011-12-25
| ||
23:06 | Move the content-type meta-tag to right after the head tag. It is reported that this helps browsers to load faster. (check-in: 17f12988a0 user: drh tags: trunk) | |
2011-12-23
| ||
20:32 | Add the psow.html document describing powersafe overwrite. (check-in: 38fb9e5380 user: drh tags: trunk) | |
Changes
Changes to wrap.tcl.
︙ | ︙ | |||
375 376 377 378 379 380 381 382 383 384 385 386 387 388 | set path $hd(rootpath-aux) } else { set fd $hd(main) set path $hd(rootpath-main) } puts $fd {<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">} puts $fd {<html><head>} puts $fd "<title>$title</title>" putsin4 $fd {<style type="text/css"> body { margin: auto; font-family: Verdana, sans-serif; padding: 8px 1%; } | > | 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 | set path $hd(rootpath-aux) } else { set fd $hd(main) set path $hd(rootpath-main) } puts $fd {<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">} puts $fd {<html><head>} puts $fd {<meta http-equiv="content-type" content="text/html; charset=UTF-8">} puts $fd "<title>$title</title>" putsin4 $fd {<style type="text/css"> body { margin: auto; font-family: Verdana, sans-serif; padding: 8px 1%; } |
︙ | ︙ | |||
437 438 439 440 441 442 443 | .fancy img { display:block; } .fancy :link:hover, .fancy :visited:hover { background: wheat } .fancy p,.fancy ul,.fancy ol { margin: 1em 5ex } .fancy li p { margin: 1em 0 } /* End of "fancyformat" specific rules. */ </style> | < | 438 439 440 441 442 443 444 445 446 447 448 449 450 451 | .fancy img { display:block; } .fancy :link:hover, .fancy :visited:hover { background: wheat } .fancy p,.fancy ul,.fancy ol { margin: 1em 5ex } .fancy li p { margin: 1em 0 } /* End of "fancyformat" specific rules. */ </style> } puts $fd {</head>} if {[file exists DRAFT]} { set tagline {<font size="6" color="red">*** DRAFT ***</font>} } else { set tagline {Small. Fast. Reliable.<br>Choose any three.} } |
︙ | ︙ |