mercurial/ui.py
Fri, 17 Mar 2017 09:19:56 -0700 Jun Wu ui: move configlist parser to config.py
Wed, 15 Mar 2017 20:34:26 -0400 Augie Fackler pager: skip running the pager if it's set to 'cat'
Wed, 15 Mar 2017 20:33:47 -0400 Augie Fackler pager: avoid shell=True on subprocess.Popen for better errors (issue5491)
Sun, 12 Mar 2017 11:43:31 -0700 Martijn Pieters config: honour the trusted flag in ui.configbytes
Sun, 12 Mar 2017 01:59:23 -0500 Augie Fackler ui: portably bytestring-ify url object
Sat, 11 Mar 2017 20:51:09 -0500 Augie Fackler ui: check for --debugger in sys.argv using r-string to avoid bytes on py3
Wed, 08 Mar 2017 22:30:12 +0900 Yuya Nishihara py3: factor out bytechr() function
Fri, 03 Mar 2017 14:09:14 -0500 Augie Fackler ui: fix ui.traceback on Python 3
Fri, 03 Mar 2017 14:08:24 -0500 Augie Fackler ui: fix opts labeling on ui.warn et al for Python 3
Fri, 03 Mar 2017 14:10:06 -0500 Augie Fackler ui: fix configlist on Python 3
Sat, 25 Feb 2017 14:09:55 +0900 Yuya Nishihara ui: remove superfluous indent in _write()
Tue, 21 Feb 2017 22:17:33 +0100 Pierre-Yves David config: suggest the 'ui.color' instead of the 'color' extension
Tue, 28 Feb 2017 11:13:25 -0800 Martin von Zweigbergk merge with stable
Sun, 06 Nov 2016 20:16:01 +0100 Pierre-Yves David color: move 'styles' definition on the 'ui' object
Sun, 06 Nov 2016 20:10:53 +0100 Pierre-Yves David color: pass 'ui' to 'win32print'
Sat, 25 Feb 2017 15:00:51 +0100 Pierre-Yves David color: move the dict with terminfo parameters on the ui object
Sun, 19 Feb 2017 01:16:45 +0900 Yuya Nishihara chg: deduplicate error handling of ui.system()
Sun, 19 Feb 2017 01:00:10 +0900 Yuya Nishihara chg: refactor ui.system() to be partly overridden
Tue, 21 Feb 2017 18:22:07 +0100 Pierre-Yves David color: have the 'ui' object carry the '_colormode' directly
Mon, 20 Feb 2017 12:42:23 +0100 Pierre-Yves David color: move 'write-err' logic to the core ui class
Fri, 24 Feb 2017 19:53:41 +0100 Pierre-Yves David ui: extract low level part of 'write_err' in its own method
Fri, 24 Feb 2017 19:28:45 +0100 Pierre-Yves David ui: extract buffer write from protect and timed 'write_err' output
Mon, 20 Feb 2017 12:31:39 +0100 Pierre-Yves David color: move 'write' logic to the core ui class
Fri, 24 Feb 2017 19:27:00 +0100 Pierre-Yves David ui: extract the low level part of 'write' in a dedicated function
Thu, 23 Feb 2017 19:45:32 +0100 Pierre-Yves David color: move the 'colorlabel' call to the core 'ui' class
Mon, 20 Feb 2017 12:12:08 +0100 Pierre-Yves David color: move '_colormode' to the core 'ui' class
Thu, 23 Feb 2017 21:27:25 +0900 Yuya Nishihara pager: do not try to run an empty pager command
Sat, 25 Feb 2017 16:57:21 +0530 Rishabh Madan ui: replace obsolete default-push with default:pushurl (issue5485) stable
Tue, 07 Feb 2017 17:13:25 -0500 Augie Fackler pager: add a config knob to just globally turn off the pager
Sun, 19 Feb 2017 20:12:52 -0500 Augie Fackler ui: rename neverpager to disablepager
Thu, 16 Feb 2017 11:34:50 -0500 Augie Fackler ui: construct _keepalnum list in a python3-friendly way
Mon, 06 Feb 2017 23:55:54 -0500 Augie Fackler ui: add a debug print right before we start the pager
Mon, 06 Feb 2017 23:42:04 -0500 Augie Fackler ui: respect historic pager.attend-$COMMAND=no
Mon, 06 Feb 2017 23:21:45 -0500 Augie Fackler ui: add ignore-single-command functionality
Wed, 15 Feb 2017 17:48:03 -0500 Augie Fackler ui: introduce neverpager() call
Wed, 15 Feb 2017 17:47:51 -0500 Augie Fackler pager: move pager-initiating code into core
Wed, 15 Feb 2017 13:38:00 -0800 Simon Farnsworth ui: give editor() a tag of its own
Wed, 15 Feb 2017 13:29:12 -0800 Simon Farnsworth ui: time calls to ui.system
Wed, 15 Feb 2017 13:50:06 -0800 Simon Farnsworth ui: log time spent blocked on stdio
Wed, 15 Feb 2017 13:17:45 -0800 Simon Farnsworth ui: provide a mechanism to track and log blocked time
Sun, 12 Feb 2017 03:06:38 -0800 Kyle Lippincott ui: remove urllib2 from being imported early
Mon, 13 Feb 2017 21:00:50 -0800 Jun Wu ui: fix configwith doctest
Sun, 12 Feb 2017 21:44:55 -0800 Bryan O'Sullivan ui: rewrite configint in terms of configwith
Sun, 12 Feb 2017 21:40:46 -0800 Bryan O'Sullivan ui: add a configwith method
Mon, 13 Feb 2017 22:15:28 +0530 Pulkit Goyal py3: convert the mode argument of os.fdopen to unicodes (2 of 2)
Wed, 18 Jan 2017 18:25:51 -0800 Sean Farley ui: rename tmpdir parameter to more specific repopath stable
Mon, 16 Jan 2017 21:05:22 -0800 Sean Farley ui: add a parameter to set the temporary directory for edit
Tue, 17 Jan 2017 23:05:12 -0500 Matt Harbison ui: introduce an experimental dict of exportable environment variables
Sat, 14 Jan 2017 20:31:35 +0900 Yuya Nishihara ui: check EOF of getpass() response read from command-server channel
Mon, 19 Dec 2016 02:15:24 +0530 Pulkit Goyal py3: replace sys.platform with pycompat.sysplatform (part 1 of 2)
Sun, 18 Dec 2016 02:06:00 +0530 Pulkit Goyal py3: replace os.environ with encoding.environ (part 4 of 5)
Sun, 23 Oct 2016 17:47:00 +0900 Yuya Nishihara ui: do not translate empty configsource() to 'none' (API)
Wed, 30 Nov 2016 23:51:11 +0530 Pulkit Goyal py3: avoid use of basestring
Sat, 22 Oct 2016 14:35:10 +0900 Yuya Nishihara ui: factor out ui.load() to create a ui without loading configs (API)
Sat, 26 Nov 2016 09:14:41 -0800 Gregory Szorc ui: use try..finally in configoverride
Wed, 23 Nov 2016 00:03:11 +0530 Pulkit Goyal py3: use pycompat.getcwd() instead of os.getcwd()
Mon, 21 Nov 2016 16:22:26 -0800 Kostia Balytskyi ui: add configoverride context manager
Thu, 20 Oct 2016 23:53:36 +0900 Yuya Nishihara py3: bulk replace sys.stdin/out/err by util's
Sun, 09 Oct 2016 09:17:49 -0400 Augie Fackler ui: explicitly open config files in binary mode
Mon, 17 Oct 2016 23:16:55 +0200 Mads Kiilerich spelling: fixes of non-dictionary words
Thu, 20 Oct 2016 23:09:05 +0900 Yuya Nishihara scmutil: extend termwidth() to return terminal height, renamed to termsize()
Thu, 20 Oct 2016 21:42:11 +0900 Yuya Nishihara scmutil: make termwidth() obtain stdio from ui
Thu, 20 Oct 2016 21:38:44 +0900 Yuya Nishihara scmutil: move util.termwidth()
Thu, 03 Nov 2016 03:12:57 +0530 Pulkit Goyal py3: use encoding.environ in ui.py
Tue, 20 Sep 2016 23:49:00 +0000 timeless samplehgrcs: use single quotes in use warning
Wed, 10 Aug 2016 15:05:20 +0100 Jun Wu ui: drop values returned by inspect.*frame*() to avoid cycles
Sun, 26 Jun 2016 07:59:02 -0700 Gregory Szorc ui: path option to declare which revisions to push by default
Sat, 25 Jun 2016 18:35:14 -0700 Gregory Szorc ui: don't fixup [paths] sub-options
Thu, 09 Jun 2016 11:41:36 +0200 liscju url: remember http password database in ui object
Sun, 12 Jun 2016 14:07:26 +0900 Yuya Nishihara ui: provide official way to reset internal state per command
Thu, 05 May 2016 00:33:38 -0700 Gregory Szorc ui: add an instance flag to hold --insecure bit
Sun, 08 May 2016 10:43:41 +0200 Pierre-Yves David devel: use the new 'config' argument of the develwarn in deprecwarn
Sun, 08 May 2016 10:43:41 +0200 Pierre-Yves David develwarn: move config gating inside the develwarn function
Thu, 05 May 2016 16:29:31 +0200 Pierre-Yves David deprecation: gate deprecation warning behind devel configuration stable
Thu, 14 Apr 2016 15:18:59 +0000 timeless config: use single quotes around command hint
Sun, 27 Mar 2016 21:05:55 +0900 Yuya Nishihara ui: drop template aliases by HGPLAIN
Sun, 20 Mar 2016 13:55:41 -0400 Jordi GutiƩrrez Hermoso edit: allow to configure the suffix of the temporary filename
Fri, 25 Mar 2016 21:51:00 +0000 timeless ui: add prompt argument to write (issue5154) (API)
Thu, 17 Mar 2016 18:34:32 +0000 timeless progress: update comment to reflect implementation
Mon, 14 Mar 2016 15:01:27 +0000 Simon Farnsworth ui: add new config flag for interface selection
Fri, 29 Jan 2016 14:37:16 +0000 timeless ui: log devel warnings
Wed, 24 Feb 2016 15:55:44 -0600 Matt Mackall merge with stable
Tue, 15 Dec 2015 23:50:48 +0900 Yuya Nishihara config: drop progress extension from sample hgrc as it is in core now
Sat, 06 Feb 2016 20:43:20 +0900 Yuya Nishihara ui: fix crash by non-interactive prompt echo for user name stable
Thu, 07 Jan 2016 19:45:03 -0800 Bryan O'Sullivan config: add hasconfig method and supporting plumbing
Sat, 26 Dec 2015 16:06:12 +0900 Yuya Nishihara paths: do not process default-push as pushurl of default path (issue5000)
Sat, 26 Dec 2015 16:10:39 +0900 Yuya Nishihara paths: make getpath() accept multiple defaults
Tue, 22 Dec 2015 15:25:40 -0800 Bryan O'Sullivan ui: remove unreachable code
Thu, 17 Dec 2015 17:27:32 -0600 Matt Mackall merge with stable
Mon, 30 Nov 2015 13:47:29 -0600 Matt Mackall ui: try to handle $$ more robustly in prompts (issue4970) stable
Sat, 05 Dec 2015 23:05:49 -0800 Pierre-Yves David ui: add a 'deprecwarn' helper to issue deprecation warnings
Sat, 05 Dec 2015 23:05:33 -0800 Pierre-Yves David ui: add a 'stacklevel' argument to 'develwarn'
Sat, 05 Dec 2015 21:11:04 -0800 Gregory Szorc ui: support declaring path push urls as sub-options
Sun, 06 Dec 2015 12:31:46 -0800 Gregory Szorc ui: pass ui instance to path.__init__
Sun, 06 Dec 2015 11:49:02 -0800 Gregory Szorc ui: store pushloc as separate attribute
Sat, 05 Dec 2015 20:24:39 -0800 Gregory Szorc ui: optionally ignore sub-options from configitems()
Sat, 05 Dec 2015 20:20:57 -0800 Gregory Szorc ui: add method to return option and all sub-options
Sat, 21 Nov 2015 22:04:09 +0200 Mykola Nikishov ui: allow open editor with custom filename
Sun, 22 Nov 2015 14:44:55 -0800 Gregory Szorc ui: avoid needless casting to a str
Tue, 24 Nov 2015 11:23:10 -0800 Gregory Szorc ui: remove labeled argument from popbuffer
Sun, 22 Nov 2015 14:10:48 -0800 Gregory Szorc ui: track label expansion when creating buffers
Sat, 14 Nov 2015 17:14:14 -0800 Gregory Szorc ui.write: don't clear progress bar when writing to a buffer
Tue, 10 Nov 2015 00:46:45 -0800 Siddharth Agarwal error: add structured exception for EOF at prompt
Thu, 22 Oct 2015 18:59:03 +0000 Gregory Szorc ui: support paths.default-push without paths.default set (issue4914) stable
Sat, 17 Oct 2015 00:58:46 +0200 Mads Kiilerich spelling: trivial spell checking
Sat, 17 Oct 2015 01:15:34 +0900 FUJIWARA Katsunori cmdutil: make in-memory changes visible to external editor (issue4378)
Thu, 08 Oct 2015 12:55:45 -0700 Pierre-Yves David error: get Abort from 'error' instead of 'util'
Sat, 03 Oct 2015 23:10:40 +0900 Yuya Nishihara ui: send traceback of devel warning to appropriate output stream
Tue, 22 Sep 2015 16:56:34 -0700 Siddharth Agarwal ui: avoid mutable default arguments
Thu, 10 Sep 2015 10:50:03 -0400 Augie Fackler ui: improve docs on ui.log
Sun, 06 Sep 2015 11:28:48 -0700 Gregory Szorc ui: change default path fallback mechanism (issue4796)
Mon, 24 Aug 2015 19:33:36 -0700 Durham Goode paths: move path validation logic to its own function
Fri, 07 Aug 2015 21:53:34 -0700 Gregory Szorc ui: capture push location on path instances
Sat, 08 Aug 2015 00:16:02 -0700 Gregory Szorc ui: move URL and path detection into path API
Sat, 08 Aug 2015 18:25:41 -0700 Gregory Szorc ui: use absolute_import
Tue, 23 Jun 2015 22:20:08 -0700 Gregory Szorc global: mass rewrite to use modern exception syntax
Fri, 19 Jun 2015 11:19:45 -0700 Pierre-Yves David devel-warn: move the develwarn function as a method of the ui object
Fri, 12 Jun 2015 22:09:41 -0400 Matt Harbison ui: flush stderr after printing a non-chained exception for Windows
Sun, 07 Jun 2015 17:51:27 -0700 Pierre-Yves David progress: display progress bars by default with core Mercurial
Sun, 07 Jun 2015 17:50:56 -0700 Pierre-Yves David progress: move all logic altering the ui object logic in mercurial.ui
less more (0) -120 tip