Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix graph display for file history. Tickets [5c7565d157b13fe0c30b7] and [a734fe24da8f75758cf4]. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
bb045dbdbd42326b196a5d7bd732d86d |
| User & Date: | drh 2010-11-15 19:50:27.000 |
Context
|
2010-11-15
| ||
| 20:07 | Update the built-in SQLite to an alpha of version 3.7.4. check-in: ea442f3704 user: drh tags: trunk | |
| 19:50 | Fix graph display for file history. Tickets [5c7565d157b13fe0c30b7] and [a734fe24da8f75758cf4]. check-in: bb045dbdbd user: drh tags: trunk | |
|
2010-11-13
| ||
| 23:45 | Change the "branch list" command to provide output more like Git. check-in: 761a6a9dcf user: drh tags: trunk | |
Changes
Changes to src/finfo.c.
| ︙ | ︙ | |||
227 228 229 230 231 232 233 | blob_zero(&title); blob_appendf(&title, "History of "); hyperlinked_path(zFilename, &title, 0); @ <h2>%b(&title)</h2> blob_reset(&title); pGraph = graph_init(); @ <div id="canvas" style="position:relative;width:1px;height:1px;"></div> | | | 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 |
blob_zero(&title);
blob_appendf(&title, "History of ");
hyperlinked_path(zFilename, &title, 0);
@ <h2>%b(&title)</h2>
blob_reset(&title);
pGraph = graph_init();
@ <div id="canvas" style="position:relative;width:1px;height:1px;"></div>
@ <table id="timelineTable" class="timelineTable">
while( db_step(&q)==SQLITE_ROW ){
const char *zDate = db_column_text(&q, 0);
const char *zCom = db_column_text(&q, 1);
const char *zUser = db_column_text(&q, 2);
int fpid = db_column_int(&q, 3);
int frid = db_column_int(&q, 4);
const char *zPUuid = db_column_text(&q, 5);
|
| ︙ | ︙ |