##// END OF EJS Templates
hgk: show secret changesets differently (shape and label)
Andrew Shadura -
r24529:14873da8 default
parent child Browse files
Show More
@@ -391,6 +391,8 b' proc parsecommit {id contents listed old'
391 set bookmark [join [lrange $line 1 end]]
391 set bookmark [join [lrange $line 1 end]]
392 } elseif {$tag == "obsolete"} {
392 } elseif {$tag == "obsolete"} {
393 set obsolete($id) ""
393 set obsolete($id) ""
394 } elseif {$tag == "phase"} {
395 set phase [lindex $line 1 end]
394 }
396 }
395 }
397 }
396 } else {
398 } else {
@@ -415,7 +417,7 b' proc parsecommit {id contents listed old'
415 set comdate [clock format $comdate]
417 set comdate [clock format $comdate]
416 }
418 }
417 set commitinfo($id) [list $headline $auname $audate \
419 set commitinfo($id) [list $headline $auname $audate \
418 $comname $comdate $comment $rev $branch $bookmark]
420 $comname $comdate $comment $rev $branch $bookmark $phase]
419
421
420 if {[info exists firstparents]} {
422 if {[info exists firstparents]} {
421 set i [lsearch $firstparents $id]
423 set i [lsearch $firstparents $id]
@@ -1149,6 +1151,7 b' proc drawcommitline {level} {'
1149 set lastuse($id) $lineno
1151 set lastuse($id) $lineno
1150 set lineid($lineno) $id
1152 set lineid($lineno) $id
1151 set idline($id) $lineno
1153 set idline($id) $lineno
1154 set shape oval
1152 set ofill [expr {[info exists commitlisted($id)]? "blue": "white"}]
1155 set ofill [expr {[info exists commitlisted($id)]? "blue": "white"}]
1153 if {![info exists commitinfo($id)]} {
1156 if {![info exists commitinfo($id)]} {
1154 readcommit $id
1157 readcommit $id
@@ -1156,6 +1159,10 b' proc drawcommitline {level} {'
1156 set commitinfo($id) {"No commit information available"}
1159 set commitinfo($id) {"No commit information available"}
1157 set nparents($id) 0
1160 set nparents($id) 0
1158 }
1161 }
1162 } else {
1163 if {[lindex $commitinfo($id) 9] eq "secret"} {
1164 set shape rect
1165 }
1159 }
1166 }
1160 if {[info exists obsolete($id)]} {
1167 if {[info exists obsolete($id)]} {
1161 set ofill darkgrey
1168 set ofill darkgrey
@@ -1186,7 +1193,7 b' proc drawcommitline {level} {'
1186 }
1193 }
1187 drawlines $id 0
1194 drawlines $id 0
1188 set orad [expr {$linespc / 3}]
1195 set orad [expr {$linespc / 3}]
1189 set t [$canv create oval [expr $x - $orad] [expr $y1 - $orad] \
1196 set t [$canv create $shape [expr $x - $orad] [expr $y1 - $orad] \
1190 [expr $x + $orad - 1] [expr $y1 + $orad - 1] \
1197 [expr $x + $orad - 1] [expr $y1 + $orad - 1] \
1191 -fill $ofill -outline black -width 1]
1198 -fill $ofill -outline black -width 1]
1192 $canv raise $t
1199 $canv raise $t
@@ -2531,6 +2538,12 b' proc selectline {l isnew} {'
2531 append comment "Child: [commit_descriptor $c]\n"
2538 append comment "Child: [commit_descriptor $c]\n"
2532 }
2539 }
2533 }
2540 }
2541
2542 if {[lindex $info 9] eq "secret"} {
2543 # for now, display phase for secret changesets only
2544 append comment "Phase: [lindex $info 9]\n"
2545 }
2546
2534 append comment "\n"
2547 append comment "\n"
2535 append comment [lindex $info 5]
2548 append comment [lindex $info 5]
2536
2549
General Comments 0
You need to be logged in to leave comments. Login now