431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
|
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
|
-
+
-
+
|
}
static const char zDefaultView[] =
@ <table cellpadding="5">
@ <tr><td class="tktDspLabel">Ticket UUID:</td>
@ <th1>
@ if {[hascap s]} {
@ html "<td class=''tktDspValue'' colspan=''3''>$tkt_uuid "
@ html "<td class='tktDspValue' colspan='3'>$tkt_uuid "
@ html "($tkt_id)</td></tr>\n"
@ } else {
@ html "<td class=''tktDspValue'' colspan=''3''>$tkt_uuid</td></tr>\n"
@ html "<td class='tktDspValue' colspan='3'>$tkt_uuid</td></tr>\n"
@ }
@ </th1>
@ <tr><td class="tktDspLabel">Title:</td>
@ <td class="tktDspValue" colspan="3">
@ $<title>
@ </td></tr>
@ <tr><td class="tktDspLabel">Status:</td><td class="tktDspValue">
|
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
|
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
|
-
+
|
@ mimetype as xmimetype, icomment AS xcomment
@ FROM ticketchng
@ WHERE tkt_id=$tkt_id} {
@ if {$seenRow} {
@ html "<hr>\n"
@ } else {
@ html "<tr><th>User Comments:</td></tr>\n"
@ html "<tr><td colspan=''5'' class=''tktDspValue''>\n"
@ html "<tr><td colspan='5' class='tktDspValue'>\n"
@ set seenRow 1
@ }
@ html "[htmlize $xlogin] added on $xdate:\n"
@ if {$alwaysPlaintext || $xmimetype eq "text/plain"} {
@ set r [randhex]
@ wiki "<verbatim-$r>[string trimright $xcomment]</verbatim-$r>\n"
@ } elseif {$xmimetype eq "text/x-fossil-wiki"} {
|