267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
|
/*
** This routine is called while for each check-in that is rendered by
** the "leaves" page. Add some additional hyperlink to show the
** ancestors of the leaf.
*/
static void leaves_extra(int rid){
@ <a href="%s(g.zBaseURL)/timeline?p=%d(rid)">[timeline]</a>
}
/*
** WEBPAGE: leaves
**
** Find leaves of all branches.
*/
|
>
|
>
|
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
|
/*
** This routine is called while for each check-in that is rendered by
** the "leaves" page. Add some additional hyperlink to show the
** ancestors of the leaf.
*/
static void leaves_extra(int rid){
if( g.okHistory ){
@ <a href="%s(g.zBaseURL)/timeline?p=%d(rid)">[timeline]</a>
}
}
/*
** WEBPAGE: leaves
**
** Find leaves of all branches.
*/
|