Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Faster implementation of the phantom artifact display on the /bloblist page. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
28b92ca631f4c1c0a6dc67a537ba4bba |
| User & Date: | drh 2020-04-13 17:09:03.193 |
Context
|
2020-04-13
| ||
| 18:28 | Enhance the artifact description logic to try to determine the source of phantom artifacts. check-in: 7fd31f6957 user: drh tags: trunk | |
| 17:09 | Faster implementation of the phantom artifact display on the /bloblist page. check-in: 28b92ca631 user: drh tags: trunk | |
| 16:56 | Sync server sends back private igot messages for private phantoms. check-in: 81445afb5c user: drh tags: trunk | |
Changes
Changes to src/name.c.
| ︙ | ︙ | |||
1232 1233 1234 1235 1236 1237 1238 |
}
if( phantomOnly || privOnly || mx>n ){
style_submenu_element("Index", "bloblist");
}
if( privOnly ){
zRange = mprintf("IN private");
}else if( phantomOnly ){
| | | 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 |
}
if( phantomOnly || privOnly || mx>n ){
style_submenu_element("Index", "bloblist");
}
if( privOnly ){
zRange = mprintf("IN private");
}else if( phantomOnly ){
zRange = mprintf("IN phantom");
}else{
zRange = mprintf("BETWEEN %d AND %d", s, s+n-1);
}
describe_artifacts(zRange);
fossil_free(zRange);
db_prepare(&q,
"SELECT rid, uuid, summary, isPrivate, type='phantom', rcvid"
|
| ︙ | ︙ |