[PATCH 3 of 8] devel: add a config field to force dates to timestamp 0

Boris Feld boris.feld at octobus.net
Mon May 22 14:46:23 EDT 2017


# HG changeset patch
# User Boris Feld <boris.feld at octobus.net>
# Date 1495189105 -7200
#      Fri May 19 12:18:25 2017 +0200
# Node ID 007ae7c431a3a049ec4c2faf676eda8ed1b0d5f6
# Parent  1738d2fb32fe1ccf2f54ef2382df0a929c50be77
# EXP-Topic develforcedate
devel: add a config field to force dates to timestamp 0

Add a new config field named default-date under the devel section to force all
implicits date to a specific value. If a explicit date is passed, it will
override the default.

This patch only affect changesets. Other usages (blackbox, obsmarkers) are
updated in later patchs.

The test runner is setting a bunch of alias to force the '--date' argument. We
will replace theses aliases in a later patch.

diff -r 1738d2fb32fe1ccf2f54ef2382df0a929c50be77 -r 007ae7c431a3a049ec4c2faf676eda8ed1b0d5f6 mercurial/context.py
--- a/mercurial/context.py	Fri May 19 12:07:41 2017 +0200
+++ b/mercurial/context.py	Fri May 19 12:18:25 2017 +0200
@@ -1353,7 +1353,11 @@
 
     @propertycache
     def _date(self):
-        return util.makedate()
+        ui = self._repo.ui
+        date = ui.configdate('devel', 'default-date')
+        if date is None:
+            date = util.makedate()
+        return date
 
     def subrev(self, subpath):
         return None


More information about the Mercurial-devel mailing list