Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix the /finfo page display that was broken by recent infrastructure enhancements. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
1ff0d0b0cf8c4b5699e370465d05a8a6 |
| User & Date: | drh 2025-10-17 13:34:33.382 |
Context
|
2025-10-17
| ||
| 14:31 | When handling HTTP over SSH only strip the filename from the PATH for GET method as POST has a different mechanism for handling it. check-in: 7531b9452e user: andybradford tags: trunk | |
| 13:35 | Merge trunk fixes into the timeline-enhance-2025 branch. check-in: 36f17b0c91 user: drh tags: timeline-enhance-2025 | |
| 13:34 | Fix the /finfo page display that was broken by recent infrastructure enhancements. check-in: 1ff0d0b0cf user: drh tags: trunk | |
| 11:18 | Add the /tarlist page with infrastructure changes to facilitate. Fix the "ng" (no-graph) query parameter so that it still colors timeline entries appropriately and still shows node circles, it just omits all the connecting lines. check-in: 9cc36d2354 user: drh tags: trunk | |
Changes
Changes to src/finfo.c.
| ︙ | ︙ | |||
811 812 813 814 815 816 817 |
pGraph = 0;
}else{
@ <tr class="timelineBottom" id="btm-%d(iTableId)">\
@ <td></td><td></td><td></td></tr>
}
}
@ </table>
| > > | > | 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 |
pGraph = 0;
}else{
@ <tr class="timelineBottom" id="btm-%d(iTableId)">\
@ <td></td><td></td><td></td></tr>
}
}
@ </table>
{
int tmFlags = TIMELINE_GRAPH | TIMELINE_FILEDIFF;
timeline_output_graph_javascript(pGraph, tmFlags, iTableId);
}
style_finish_page();
}
/*
** WEBPAGE: mlink
** URL: /mlink?name=FILENAME
** URL: /mlink?ci=NAME
|
| ︙ | ︙ |