Mercurial > hg
annotate mercurial/templates/gitweb/notfound.tmpl @ 52178:bcd4962e0df9
rust-revlog: don't create an in-memory nodemap for filelogs from Python
Explanations inline.
Benchmarks from this change affect positively the only repo that showed this
being a problem:
```
### data-env-vars.name = mozilla-try-2024-03-26-ds2-pnm
# benchmark.name = hg.command.cat
# bin-env-vars.hg.flavor = rust
# bin-env-vars.hg.py-re2-module = default
# benchmark.variants.files = all-root
# benchmark.variants.output = plain
# benchmark.variants.rev = tip
default: 62.848869 ~~~~~
before-this-patch: 58.113051 (-7.54%, -4.74)
this-patch: 57.407533 (-8.66%, -5.44)
### data-env-vars.name = mozilla-try-2024-03-26-ds2-pnm
# benchmark.name = hg.command.log
# bin-env-vars.hg.flavor = rust
# bin-env-vars.hg.py-re2-module = default
# benchmark.variants.limit-rev = 10
# benchmark.variants.patch = yes
# benchmark.variants.rev = none
default: 3.173532 ~~~~~
before-this-patch: 3.543591 (+11.66%, +0.37)
this-patch: 3.297235 (+3.90%, +0.12)
```
author | Raphaël Gomès <rgomes@octobus.net> |
---|---|
date | Wed, 31 Jul 2024 13:35:54 +0200 |
parents | 9409aeaafdc1 |
children |
rev | line source |
---|---|
4842
d39776752a1f
gitweb: add notfound template
Brendan Cully <brendan@kublai.com>
parents:
diff
changeset
|
1 {header} |
5560
e78c24011001
hgweb: make notfound templates more informative
Bryan O'Sullivan <bos@serpentine.com>
parents:
4842
diff
changeset
|
2 <title>Mercurial repository not found</title> |
4842
d39776752a1f
gitweb: add notfound template
Brendan Cully <brendan@kublai.com>
parents:
diff
changeset
|
3 </head> |
d39776752a1f
gitweb: add notfound template
Brendan Cully <brendan@kublai.com>
parents:
diff
changeset
|
4 |
d39776752a1f
gitweb: add notfound template
Brendan Cully <brendan@kublai.com>
parents:
diff
changeset
|
5 <body> |
d39776752a1f
gitweb: add notfound template
Brendan Cully <brendan@kublai.com>
parents:
diff
changeset
|
6 |
d39776752a1f
gitweb: add notfound template
Brendan Cully <brendan@kublai.com>
parents:
diff
changeset
|
7 <div class="page_header"> |
13964
616ad3f6fd33
hgweb: support alternate logo url
Steven Stallion <sstallion@gmail.com>
parents:
9999
diff
changeset
|
8 <a href="{logourl}" title="Mercurial" style="float: right;">Mercurial</a> Not found: {repo|escape} |
4842
d39776752a1f
gitweb: add notfound template
Brendan Cully <brendan@kublai.com>
parents:
diff
changeset
|
9 </div> |
d39776752a1f
gitweb: add notfound template
Brendan Cully <brendan@kublai.com>
parents:
diff
changeset
|
10 |
d39776752a1f
gitweb: add notfound template
Brendan Cully <brendan@kublai.com>
parents:
diff
changeset
|
11 <div class="page_body"> |
d39776752a1f
gitweb: add notfound template
Brendan Cully <brendan@kublai.com>
parents:
diff
changeset
|
12 The specified repository "{repo|escape}" is unknown, sorry. |
d39776752a1f
gitweb: add notfound template
Brendan Cully <brendan@kublai.com>
parents:
diff
changeset
|
13 <br/> |
d39776752a1f
gitweb: add notfound template
Brendan Cully <brendan@kublai.com>
parents:
diff
changeset
|
14 <br/> |
18526
9409aeaafdc1
hgweb: urlescape all urls, HTML escape repo/tag/branch/... names
Thomas Arendsen Hein <thomas@intevation.de>
parents:
13964
diff
changeset
|
15 Please go back to the <a href="{url|urlescape}">main repository list page</a>. |
4842
d39776752a1f
gitweb: add notfound template
Brendan Cully <brendan@kublai.com>
parents:
diff
changeset
|
16 </div> |
d39776752a1f
gitweb: add notfound template
Brendan Cully <brendan@kublai.com>
parents:
diff
changeset
|
17 |
d39776752a1f
gitweb: add notfound template
Brendan Cully <brendan@kublai.com>
parents:
diff
changeset
|
18 {footer} |