287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
|
rid, TAG_CLOSED) ){
@ <span class="timelineLeaf">Closed-Leaf:</span>
}else{
@ <span class="timelineLeaf">Leaf:</span>
}
}
}else if( zType[0]=='e' && tagid ){
char *zId = db_text(0,"SELECT tagname FROM tag WHERE tagid=%d", tagid);
zId += 6;
if( g.okHistory && g.okRdWiki ){
@ [<a href="%s(g.zBaseURL)/event?name=%s(zId)">%S(zId)</a>]
}else{
@ [%S(zId)]
}
}else if( (tmFlags & TIMELINE_ARTID)!=0 ){
hyperlink_to_uuid(zUuid);
}
db_column_blob(pQuery, commentColumn, &comment);
if( mxWikiLen>0 && blob_size(&comment)>mxWikiLen ){
Blob truncated;
blob_zero(&truncated);
|
|
<
<
<
<
<
<
|
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
|
rid, TAG_CLOSED) ){
@ <span class="timelineLeaf">Closed-Leaf:</span>
}else{
@ <span class="timelineLeaf">Leaf:</span>
}
}
}else if( zType[0]=='e' && tagid ){
hyperlink_to_event_tagid(tagid);
}else if( (tmFlags & TIMELINE_ARTID)!=0 ){
hyperlink_to_uuid(zUuid);
}
db_column_blob(pQuery, commentColumn, &comment);
if( mxWikiLen>0 && blob_size(&comment)>mxWikiLen ){
Blob truncated;
blob_zero(&truncated);
|