CVSSourceCodeManager.st
changeset 1507 883bdacd2617
parent 1502 705913d4cae0
child 1508 06d441988888
equal deleted inserted replaced
1506:e304342e4fb8 1507:883bdacd2617
  1293     ].
  1293     ].
  1294 
  1294 
  1295     "/
  1295     "/
  1296     "/ correct our current time, so that converting it will give us UTC
  1296     "/ correct our current time, so that converting it will give us UTC
  1297     "/
  1297     "/
  1298     time := Timestamp now subtractSeconds:1.
  1298     time := Timestamp now asUtcTimestamp subtractSeconds:1.
  1299     time := time addSeconds:(time utcOffset).
       
  1300 
  1299 
  1301     self createEntryFor:checkoutName 
  1300     self createEntryFor:checkoutName 
  1302          module:moduleDir
  1301          module:moduleDir
  1303          in:(tempdir construct:modulePath) 
  1302          in:(tempdir construct:modulePath) 
  1304          revision:revision
  1303          revision:revision
  1805     checkoutName :=  modulePath , '/' , classFileName.
  1804     checkoutName :=  modulePath , '/' , classFileName.
  1806 
  1805 
  1807     "/
  1806     "/
  1808     "/ correct our current time, so that converting it will give us UTC
  1807     "/ correct our current time, so that converting it will give us UTC
  1809     "/
  1808     "/
  1810     time := Timestamp now subtractSeconds:1.
  1809     time := Timestamp now asUtcTimestamp subtractSeconds:1.
  1811     time := time addSeconds:(time utcOffset).
       
  1812 
  1810 
  1813     self createEntryFor:checkoutName 
  1811     self createEntryFor:checkoutName 
  1814          module:moduleDir
  1812          module:moduleDir
  1815          in:(tempdir construct:modulePath) 
  1813          in:(tempdir construct:modulePath) 
  1816          revision:revision
  1814          revision:revision
  4267 ! !
  4265 ! !
  4268 
  4266 
  4269 !CVSSourceCodeManager class methodsFor:'documentation'!
  4267 !CVSSourceCodeManager class methodsFor:'documentation'!
  4270 
  4268 
  4271 version
  4269 version
  4272     ^ '$Header: /cvs/stx/stx/libbasic3/CVSSourceCodeManager.st,v 1.311 2006-07-04 16:24:54 cg Exp $'
  4270     ^ '$Header: /cvs/stx/stx/libbasic3/CVSSourceCodeManager.st,v 1.312 2006-07-17 10:03:34 stefan Exp $'
  4273 ! !
  4271 ! !
  4274 
  4272 
  4275 CVSSourceCodeManager initialize!
  4273 CVSSourceCodeManager initialize!