annotate templates/header.tmpl @ 523:003df62ae39f

[PATCH] Force "hg clone" to always create a new directory -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 [PATCH] Force "hg clone" to always create a new directory From: Bryan O'Sullivan <bos@serpentine.com> I just screwed myself by typing "hg clone foo" without specifying a destination directory, and after I was done mopping up the mess, concluded that this is a dangerous mode of operation that has no practical value. I've thus modified the clone command so that it always creates a destination directory. If none is specified, the destination is taken as the basename of the source. hg clone foo -> error, because foo already exists hg clone http://www.selenic.com/hg -> new repo, named hg hg clone ../bar -> new repo, named bar manifest hash: f21ed8f805a60c1326d99220772e1574b0870d6c -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCwxsIywK+sNU5EO8RAgooAKC3IL6vKyADb9s2qqqi4GMw2Z7asACbBtE/ TvPgwGtIiB2GC+N+V7r1VpI= =uTcK -----END PGP SIGNATURE-----
author mpm@selenic.com
date Wed, 29 Jun 2005 14:04:56 -0800
parents e9b1147db448
children 415054ea31c1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
142
529bf610092e Prettify the web interface
mpm@selenic.com
parents:
diff changeset
1 Content-type: text/html
529bf610092e Prettify the web interface
mpm@selenic.com
parents:
diff changeset
2
154
1d5f799ebe1e fixed problem with head/body tags, added dtd, fixed table attributes
jake@edge2.net
parents: 142
diff changeset
3 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
142
529bf610092e Prettify the web interface
mpm@selenic.com
parents:
diff changeset
4 <html>
529bf610092e Prettify the web interface
mpm@selenic.com
parents:
diff changeset
5 <head>
529bf610092e Prettify the web interface
mpm@selenic.com
parents:
diff changeset
6 <style type="text/css">
529bf610092e Prettify the web interface
mpm@selenic.com
parents:
diff changeset
7 a { text-decoration:none; }
172
e9b1147db448 hgweb: alternating colors for multifile diffs
mpm@selenic.com
parents: 168
diff changeset
8 .parity0 { background-color: #dddddd; }
e9b1147db448 hgweb: alternating colors for multifile diffs
mpm@selenic.com
parents: 168
diff changeset
9 .parity1 { background-color: #eeeeee; }
e9b1147db448 hgweb: alternating colors for multifile diffs
mpm@selenic.com
parents: 168
diff changeset
10 .lineno { width: 60px; color: #aaaaaa; font-size: smaller; }
142
529bf610092e Prettify the web interface
mpm@selenic.com
parents:
diff changeset
11 .plusline { color: green; }
529bf610092e Prettify the web interface
mpm@selenic.com
parents:
diff changeset
12 .minusline { color: red; }
529bf610092e Prettify the web interface
mpm@selenic.com
parents:
diff changeset
13 .atline { color: purple; }
529bf610092e Prettify the web interface
mpm@selenic.com
parents:
diff changeset
14 .annotate { font-size: smaller; text-align: right; padding-right: 1em; }
529bf610092e Prettify the web interface
mpm@selenic.com
parents:
diff changeset
15 .buttons a {
529bf610092e Prettify the web interface
mpm@selenic.com
parents:
diff changeset
16 background-color: #666666;
529bf610092e Prettify the web interface
mpm@selenic.com
parents:
diff changeset
17 padding: 2pt;
529bf610092e Prettify the web interface
mpm@selenic.com
parents:
diff changeset
18 color: white;
529bf610092e Prettify the web interface
mpm@selenic.com
parents:
diff changeset
19 font-family: sans;
529bf610092e Prettify the web interface
mpm@selenic.com
parents:
diff changeset
20 font-weight: bold;
529bf610092e Prettify the web interface
mpm@selenic.com
parents:
diff changeset
21 }
529bf610092e Prettify the web interface
mpm@selenic.com
parents:
diff changeset
22 .metatag {
529bf610092e Prettify the web interface
mpm@selenic.com
parents:
diff changeset
23 background-color: #888888;
529bf610092e Prettify the web interface
mpm@selenic.com
parents:
diff changeset
24 color: white;
529bf610092e Prettify the web interface
mpm@selenic.com
parents:
diff changeset
25 text-align: right;
529bf610092e Prettify the web interface
mpm@selenic.com
parents:
diff changeset
26 }
529bf610092e Prettify the web interface
mpm@selenic.com
parents:
diff changeset
27
529bf610092e Prettify the web interface
mpm@selenic.com
parents:
diff changeset
28 </style>