##// END OF EJS Templates
[hgweb] Prevent search engine bots from indexing the entire repository
[hgweb] Prevent search engine bots from indexing the entire repository

File last commit:

r1628:88ad18c1 default
r1628:88ad18c1 default
Show More
header.tmpl
80 lines | 2.0 KiB | application/x-cheetah | CheetahLexer
mpm@selenic.com
Prettify the web interface...
r142 Content-type: text/html
jake@edge2.net
fixed problem with head/body tags, added dtd, fixed table attributes...
r154 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
mpm@selenic.com
Prettify the web interface...
r142 <html>
<head>
Matt Mackall
[hgweb] Prevent search engine bots from indexing the entire repository
r1628 <meta name="robots" content="index, nofollow" />
mpm@selenic.com
Prettify the web interface...
r142 <style type="text/css">
mpm@selenic.com
[PATCH] Hide style from non conformant agents...
r583 <!--
mpm@selenic.com
Prettify the web interface...
r142 a { text-decoration:none; }
mpm@selenic.com
hgweb: alternating colors for multifile diffs
r172 .parity0 { background-color: #dddddd; }
.parity1 { background-color: #eeeeee; }
TK Soh
hgweb file: fixed left-justified line numbers on IE v6.0...
r1336 .lineno { width: 60px; color: #aaaaaa; font-size: smaller;
text-align: right; padding-right:1em; }
mpm@selenic.com
Prettify the web interface...
r142 .plusline { color: green; }
.minusline { color: red; }
.atline { color: purple; }
.annotate { font-size: smaller; text-align: right; padding-right: 1em; }
.buttons a {
background-color: #666666;
padding: 2pt;
color: white;
font-family: sans;
font-weight: bold;
}
TK Soh
hgweb: improve look-n-feel of changelog nagivation
r1425 .navigate a {
background-color: #ccc;
padding: 2pt;
font-family: sans;
color: black;
}
Matt Mackall
hgweb: add a mercurial link to the footer
r1417
mpm@selenic.com
Prettify the web interface...
r142 .metatag {
background-color: #888888;
color: white;
Thomas Arendsen Hein
Cleanup of tabs and trailing spaces.
r1308 text-align: right;
mpm@selenic.com
Prettify the web interface...
r142 }
mpm@selenic.com
[PATCH] Changelogentry template cleanup...
r585
mpm@selenic.com
Various HTML cleanups...
r602 /* Common */
Edouard Gomez
More IE friendly diff output related templates....
r672 pre { margin: 0; }
Matt Mackall
hgweb: add a mercurial link to the footer
r1417 .logo {
background-color: #333;
padding: 4pt;
margin: 8pt 0 8pt 8pt;
font-family: sans;
font-size: 60%;
color: white;
float: right;
clear: right;
text-align: left;
}
.logo a {
font-weight: bold;
font-size: 150%;
color: #999;
}
mpm@selenic.com
Various HTML cleanups...
r602
mpm@selenic.com
[PATCH] Changelogentry template cleanup...
r585 /* Changelog entries */
.changelogEntry { width: 100%; }
TK Soh
hgweb: fixed IE display problem on changelog page...
r1334 .changelogEntry th { font-weight: normal; text-align: right; vertical-align: top; }
mpm@selenic.com
[PATCH] Changelogentry template cleanup...
r585 .changelogEntry th.age, .changelogEntry th.firstline { font-weight: bold; }
.changelogEntry th.firstline { text-align: left; width: inherit; }
mpm@selenic.com
[PATCH] Tags template cleanup...
r586
/* Tag entries */
#tagEntries { list-style: none; margin: 0; padding: 0; }
#tagEntries .tagEntry { list-style: none; margin: 0; padding: 0; }
#tagEntries .tagEntry span.node { font-family: monospace; }
mpm@selenic.com
Various HTML cleanups...
r602
/* Changeset entry */
#changesetEntry { }
#changesetEntry th { font-weight: normal; background-color: #888; color: #fff; text-align: right; }
#changesetEntry th.files, #changesetEntry th.description { vertical-align: top; }
/* File diff view */
#filediffEntry { }
#filediffEntry th { font-weight: normal; background-color: #888; color: #fff; text-align: right; }
Edouard Gomez
More IE friendly diff output related templates....
r672
mpm@selenic.com
[PATCH] Hide style from non conformant agents...
r583 -->
mpm@selenic.com
Prettify the web interface...
r142 </style>