Check-in [09af24fc7c]
Not logged in
Overview

SHA1 Hash:09af24fc7cedafa05a2937b88c429c67ddc27f5d
Date: 2007-10-17 04:33:49
User: aku
Comment:Extended file-level symbols and project-level trunk with methods to allow users to distinguish them (trunk vs. not trunk, for use as lines of development).
Timelines: ancestors | descendants | both | trunk
Other Links: files | ZIP archive | manifest

Tags And Properties
Changes
[hide diffs]

Modified tools/cvs2fossil/lib/c2f_fsym.tcl from [211201a643] to [0f3cff0586].

@@ -42,10 +42,12 @@
 
     # Symbol acessor methods.
 
     delegate method name to mysymbol
     delegate method id   to mysymbol
+
+    method istrunk {} { return 0 }
 
     # Branch acessor methods.
 
     method setchildrevnr  {revnr} {
 	if {$mybranchchildrevnr ne ""} { trouble internal "Child already defined" }

Modified tools/cvs2fossil/lib/c2f_ptrunk.tcl from [21f2d5f77f] to [eb3e864d33].

@@ -27,12 +27,13 @@
 
     constructor {} {
 	return
     }
 
-    method name {} { return :trunk: }
-    method id   {} { return {}      }
+    method name    {} { return :trunk: }
+    method id      {} { return {}      }
+    method istrunk {} { return 1 }
 
     # # ## ### ##### ######## #############
     ## State
 
     # # ## ### ##### ######## #############