Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Correct "From" URL in check-in MLINK table |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
24a0667e785c19bd3c9e7d8a069f7b42 |
| User & Date: | andygoth 2016-09-27 17:47:09.710 |
Context
|
2016-09-28
| ||
| 21:11 | Add "circa" timeline link to show changes made around the time of a given check-in even if they are neither ancestors nor descendants. check-in: b6862a3700 user: andygoth tags: andygoth-circa | |
| 16:15 | Use the DBSTAT virtual table as a table-valued function instead of creating a TEMP instance of the table, while generating the /repo-tabsize page. check-in: 14f83bc049 user: drh tags: trunk | |
|
2016-09-27
| ||
| 17:47 | Correct "From" URL in check-in MLINK table check-in: 24a0667e78 user: andygoth tags: trunk | |
| 17:23 | One more tweak to fileformat.wiki check-in: 731eb89787 user: andygoth tags: trunk | |
Changes
Changes to src/finfo.c.
| ︙ | ︙ | |||
703 704 705 706 707 708 709 |
const char *zPrior = db_column_text(&q,4);
const char *zParent = db_column_text(&q,5);
int isExec = db_column_int(&q,6);
int isAux = db_column_int(&q,7);
@ <tr>
@ <td><a href='%R/finfo?name=%t(zName)'>%h(zName)</a></td>
if( zParent ){
| | | 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 |
const char *zPrior = db_column_text(&q,4);
const char *zParent = db_column_text(&q,5);
int isExec = db_column_int(&q,6);
int isAux = db_column_int(&q,7);
@ <tr>
@ <td><a href='%R/finfo?name=%t(zName)'>%h(zName)</a></td>
if( zParent ){
@ <td><a href='%R/info/%!S(zParent)'>%S(zParent)</a></td>
}else{
@ <td><i>(New)</i></td>
}
@ <td align='center'>%s(isAux?"✓":"")</td>
if( zFid ){
@ <td><a href='%R/info/%!S(zFid)'>%S(zFid)</a></td>
}else{
|
| ︙ | ︙ |