Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Remove an unused variable. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
99f8337b66f08c3411eff50cf72e43ca |
| User & Date: | drh 2015-05-14 21:00:20.456 |
Context
|
2015-05-15
| ||
| 01:41 | Integrate andygoth-versioned-open. This makes [fossil open] respect ".fossil-settings/allow-symlinks". check-in: 010451e7a5 user: andygoth tags: trunk | |
|
2015-05-14
| ||
| 21:00 | Remove an unused variable. check-in: 99f8337b66 user: drh tags: trunk | |
| 18:31 | Fix the error output for command-line option errors on the "fossil http" command. check-in: 648dc3e704 user: drh tags: trunk | |
Changes
Changes to src/name.c.
| ︙ | ︙ | |||
1136 1137 1138 1139 1140 1141 1142 |
/*
** WEBPAGE: hash-collisions
**
** Show the number of hash collisions for hash prefixes of various lengths.
*/
void hash_collisions_webpage(void){
| < | 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 |
/*
** WEBPAGE: hash-collisions
**
** Show the number of hash collisions for hash prefixes of various lengths.
*/
void hash_collisions_webpage(void){
login_check_credentials();
if( !g.perm.Read ){ login_needed(g.anon.Read); return; }
style_header("SHA1 Prefix Collisions");
style_submenu_element("Activity Reports", 0, "reports");
style_submenu_element("Stats", 0, "stat");
@ <h1>Hash Prefix Collisions on Check-ins</h1>
collision_report("SELECT (SELECT uuid FROM blob WHERE rid=objid)"
|
| ︙ | ︙ |