| | @@ -42,21 +42,21 @@ |
| 42 | 42 | method admindone {} {} |
| 43 | 43 | |
| 44 | 44 | method sethead {h} {} |
| 45 | 45 | method setprincipalbranch {b} {} |
| 46 | 46 | |
| 47 | | - method setsymbols {dict} {} |
| 48 | | - method setcomment {c} {} |
| 49 | | - method setdesc {d} {} |
| 47 | + method deftag {s r} {} |
| 48 | + method setcomment {c} {} |
| 49 | + method setdesc {d} {} |
| 50 | 50 | |
| 51 | 51 | method def {rev date author state next branches} {} |
| 52 | 52 | method extend {rev commitmsg deltarange} {} |
| 53 | 53 | |
| 54 | 54 | #method begin {} {puts begin} |
| 55 | 55 | #method sethead {h} {puts head=$h} |
| 56 | 56 | #method setprincipalbranch {b} {puts pb=$b} |
| 57 | | - #method setsymbols {dict} {puts symbols=$dict} |
| 57 | + #method deftag {s r} {puts $s=$r } |
| 58 | 58 | #method setcomment {c} {puts comment=$c} |
| 59 | 59 | #method admindone {} {puts admindone} |
| 60 | 60 | #method def {rev date author state next branches} {puts "def $rev $date $author $state $next $branches"} |
| 61 | 61 | #method setdesc {d} {puts desc=$d} |
| 62 | 62 | #method extend {rev commitmsg deltarange} {puts "extend $commitmsg $deltarange"} |
| | @@ -83,14 +83,12 @@ |
| 83 | 83 | method setprincipalbranch {b} { |
| 84 | 84 | set myprincipal $b |
| 85 | 85 | return |
| 86 | 86 | } |
| 87 | 87 | |
| 88 | | - method setsymbols {dict} { |
| 88 | + method deftag {symbol rev} { |
| 89 | 89 | # Slice symbols into branches and tags, canonical numbers ... |
| 90 | | -array set _ $dict |
| 91 | | -parray _ |
| 92 | 90 | } |
| 93 | 91 | |
| 94 | 92 | method setcomment {c} {# ignore} |
| 95 | 93 | method setdesc {d} {# ignore} |
| 96 | 94 | |
| 97 | 95 | |