Differences From:
File
tools/cvs2fossil/lib/c2f_repository.tcl
part of check-in
[99e165d5c4]
- Created a separate common class for the id databases used by the repository, and updated the repository code to use it.
by
aku on
2007-10-21 04:42:14.
[view]
To:
File
tools/cvs2fossil/lib/c2f_repository.tcl
part of check-in
[adf168e23e]
- Extended handling of id's for files so that we have them for backreferences from symbols and revisions. Completed persistence of revisions and symbols at file-level and fixed small problem with left-over links to branches.
by
aku on
2007-10-24 08:01:01.
[view]
@@ -151,9 +151,9 @@
}
foreach {fid pid name visible exec} [state run {
SELECT fid, pid, name, visible, exec FROM file ;
}] {
- $pr($pid) addfile $name $visible $exec
+ $pr($pid) addfile $name $visible $exec $fid
}
}
return
}