Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Remove the (broken) "Color by Hash" submenu link from the /bloblist page. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
dd687c7c90e81334eea3f71d613b58a1 |
| User & Date: | drh 2017-03-16 16:16:32.110 |
Context
|
2017-03-16
| ||
| 17:55 | Update the change log for version 2.2. Change the version number to 2.2. check-in: b477fe5799 user: drh tags: trunk | |
| 16:16 | Remove the (broken) "Color by Hash" submenu link from the /bloblist page. check-in: dd687c7c90 user: drh tags: trunk | |
| 15:29 | On the /rcvfromlist page, show the hash algorithms used for each batch of artifacts received. check-in: 386191d379 user: drh tags: trunk | |
Changes
Changes to src/name.c.
| ︙ | ︙ | |||
1005 1006 1007 1008 1009 1010 1011 |
char *zSha1Bg;
char *zSha3Bg;
login_check_credentials();
if( !g.perm.Read ){ login_needed(g.anon.Read); return; }
style_header("List Of Artifacts");
style_submenu_element("250 Largest", "bigbloblist");
| < < < | 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 |
char *zSha1Bg;
char *zSha3Bg;
login_check_credentials();
if( !g.perm.Read ){ login_needed(g.anon.Read); return; }
style_header("List Of Artifacts");
style_submenu_element("250 Largest", "bigbloblist");
if( !unpubOnly && mx>n && P("s")==0 ){
int i;
@ <p>Select a range of artifacts to view:</p>
@ <ul>
for(i=1; i<=mx; i+=n){
@ <li> %z(href("%R/bloblist?s=%d&n=%d",i,n))
@ %d(i)..%d(i+n-1<mx?i+n-1:mx)</a>
|
| ︙ | ︙ |