Diff
Not logged in

Differences From:

File tools/cvs2fossil/lib/c2f_repository.tcl part of check-in [cfe4b269ac] - Added detection of irrelevant trunk revisions for files added to a branch but not the trunk. Repository extended to keep inverted indices for the meta data and commit messages for retrieval of commit messages per meta data, required for the previous. fixed problem with file objects, we kept only the rcs path, and need the user visible path too. by aku on 2007-10-17 04:37:05. [view]

To:

File tools/cvs2fossil/lib/c2f_repository.tcl part of check-in [510cd02303] - Continued the work on pass II, wrangling a file into shape. Completed handling of unnecessary initial deletions on branches. by aku on 2007-10-19 07:23:57. [view]

@@ -77,9 +77,9 @@
 
     typemethod defauthor {a} {
 	if {![info exists myauthor($a)]} {
 	    set myauthor($a) [incr myauthorcnt]
-	    log write 6 repository "author '$a' =  $myauthor($a)"
+	    log write 7 repository "author '$a' =  $myauthor($a)"
 	}
 	return $myauthor($a)
     }
 
@@ -86,9 +86,9 @@
     typemethod defcmessage {cm} {
 	if {![info exists mycmsg($cm)]} {
 	    set mycmsg($cm) [set cid [incr mycmsgcnt]]
 	    set mycmsginv($cid) $cm
-	    log write 6 repository "cmessage '$cm' =  $cid"
+	    log write 7 repository "cmessage '$cm' =  $cid"
 	}
 	return $mycmsg($cm)
     }
 
@@ -95,9 +95,9 @@
     typemethod defsymbol {pid name} {
 	set key [list $pid $name]
 	if {![info exists mysymbol($key)]} {
 	    set mysymbol($key) [incr mysymbolcnt]
-	    log write 6 repository "symbol ($key) =  $mysymbol($key)"
+	    log write 7 repository "symbol ($key) =  $mysymbol($key)"
 	}
 	return $mysymbol($key)
     }
 
@@ -105,9 +105,9 @@
 	set key [list $pid $bid $aid $cid]
 	if {![info exists mymeta($key)]} {
 	    set mymeta($key) [set mid [incr mymetacnt]]
 	    set mymetainv($mid) $key
-	    log write 6 repository "meta ($key) =  $mymeta($key)"
+	    log write 7 repository "meta ($key) =  $mymeta($key)"
 	}
 	return $mymeta($key)
     }