210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
|
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
|
-
-
+
+
|
markLeaves = db_get_int("timeline-mark-leaves",1);
if( markLeaves<0 ) markLeaves = 1;
}
if( strcmp(zUuid, MANIFEST_UUID)==0 ){
/* This will only ever happen when Fossil is drawing a timeline for
** its own self-host repository. If the timeline shows the specific
** check-in corresponding to the current executable, then tag that
** check-in with "自" (Simplified Chinese for "self"). */
zPrefix = "自 ";
** check-in with "self" */
zPrefix = "self ";
}else if( markLeaves && db_column_int(pQuery,5) ){
if( markLeaves==1 ){
zPrefix = has_closed_tag(rid) ? "closed " : "leaf ";
}else{
zPrefix = has_closed_tag(rid) ?
"<span class='timelineLeaf'>Closed-Leaf</span>\n" :
"<span class='timelineLeaf'>Leaf</span>\n";
|