Differences From Artifact [9cab4d3dc8]:
- File tools/cvs2fossil/lib/c2f_ristate.tcl — part of check-in [c9270189c2] at 2008-02-05 15:52:35 on branch trunk — Added tracking of file removal in changesets. (user: aku size: 3326) [more...]
To Artifact [a43e38672d]:
- File tools/cvs2fossil/lib/c2f_ristate.tcl — part of check-in [6d5de5f1c1] at 2008-02-13 04:57:43 on branch trunk — Tuned the handling of the vendor branch in case we have multiple different symbols representing it. The import pass now effectively merges these symbols into a single line of development. (user: aku size: 3485) [more...]
| ︙ | |||
66 67 68 69 70 71 72 73 74 75 76 77 78 79 | 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 | + + + + + + |
return $wss
}
method get {lod} { return $mystate($lod) }
method has {lod} { return [info exists mystate($lod)] }
method names {} { return [array names mystate] }
method dup {dst _from_ src} {
log write 8 ristate {Duplicate workspace state for LOD "$dst" from "$src"}
set mystate($dst) $mystate($src)
return
}
# # ## ### ##### ######## #############
## State
variable mystate -array {} ; # Map from lines of development
# (identified by name) to their
# workspace state.
|
| ︙ |