Mon, 11 Jun 2007 21:09:23 -0500 extensions: separate function for loading single extensions
Matt Mackall <mpm@selenic.com> [Mon, 11 Jun 2007 21:09:23 -0500] rev 4543
extensions: separate function for loading single extensions
Mon, 11 Jun 2007 21:09:23 -0500 dispatch: reorder functions
Matt Mackall <mpm@selenic.com> [Mon, 11 Jun 2007 21:09:23 -0500] rev 4542
dispatch: reorder functions
Mon, 11 Jun 2007 21:09:23 -0500 localrepo: break out the repo-finding walk into its own function
Matt Mackall <mpm@selenic.com> [Mon, 11 Jun 2007 21:09:23 -0500] rev 4541
localrepo: break out the repo-finding walk into its own function
Mon, 11 Jun 2007 12:14:31 -0700 Respect locale environment variables on darwin.
Brendan Cully <brendan@kublai.com> [Mon, 11 Jun 2007 12:14:31 -0700] rev 4540
Respect locale environment variables on darwin. In python 2.4+ on darwin, locale.getpreferredencoding() returns mac-roman regardless of what LC_CTYPE, LANG etc are set to. This can produce hard-to-notice conversion errors if input text is not in mac-roman. So this patch overrides it with setlocale/getlocale if the environment has been customized, on the assumption that the user has done so deliberately.
Mon, 11 Jun 2007 11:06:42 -0700 Small cleanups for the new tag code
Brendan Cully <brendan@kublai.com> [Mon, 11 Jun 2007 11:06:42 -0700] rev 4539
Small cleanups for the new tag code
Fri, 01 Jun 2007 19:56:39 -0400 gitweb: Display branch and tag labels
Josef "Jeff" Sipek <jeffpc@josefsipek.net> [Fri, 01 Jun 2007 19:56:39 -0400] rev 4538
gitweb: Display branch and tag labels Pages which display labels: - summary - shortlog - changelog - changeset - search
Sun, 10 Jun 2007 21:05:01 -0700 Merge with mpm
Brendan Cully <brendan@kublai.com> [Sun, 10 Jun 2007 21:05:01 -0700] rev 4537
Merge with mpm
Sun, 10 Jun 2007 21:16:58 -0500 commit: fix bug where dirstate for removed file is confused
Matt Mackall <mpm@selenic.com> [Sun, 10 Jun 2007 21:16:58 -0500] rev 4536
commit: fix bug where dirstate for removed file is confused This fixes issue586
Sun, 10 Jun 2007 19:16:20 -0500 hg serve: don't lookup user-supplied names/addresses
Matt Mackall <mpm@selenic.com> [Sun, 10 Jun 2007 19:16:20 -0500] rev 4535
hg serve: don't lookup user-supplied names/addresses
Sun, 10 Jun 2007 20:08:47 -0700 Split convert extension into common and repository type modules
Brendan Cully <brendan@kublai.com> [Sun, 10 Jun 2007 20:08:47 -0700] rev 4534
Split convert extension into common and repository type modules
Sat, 09 Jun 2007 13:25:54 +0200 Removed trailing \n in calls to util.Abort()
Thomas Arendsen Hein <thomas@intevation.de> [Sat, 09 Jun 2007 13:25:54 +0200] rev 4533
Removed trailing \n in calls to util.Abort()
Sat, 09 Jun 2007 13:17:58 +0200 Some small cleanups for convert extension:
Thomas Arendsen Hein <thomas@intevation.de> [Sat, 09 Jun 2007 13:17:58 +0200] rev 4532
Some small cleanups for convert extension: - repo doesn't need to be imported - util.Abort doesn't need \n - space after comma - long lines - spacing
Sat, 09 Jun 2007 01:04:28 -0300 Avoid extra filelogs entries.
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Sat, 09 Jun 2007 01:04:28 -0300] rev 4531
Avoid extra filelogs entries. Right now, there are some situations in which localrepo.filecommit can create filelog entries even though they're not needed. For example: - permissions for a file have changed; - qrefresh can create a filelog entry identical to its parent (see the added test); - convert-repo creates extra filelog entries in every merge where the first parent has added files (for example, changeset ebebe9577a1a of the kernel repo added extra filelog entries to files in the arch/blackfin directory, even though the merge should only touch the drivers/ata directory). This makes "hg log file" in a converted repo less useful than it could be, since it may mention many merges that don't actually touch that specific file. They all come from the same basic problem: localrepo.commit (through filecommit) creates new filelog entries for all files passed to it (except for some cases during a merge). Patch and test case provided by Benoit. This should fix issue351.
Sat, 09 Jun 2007 01:04:28 -0300 Make sure the changelog mentions files whose flags changed
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Sat, 09 Jun 2007 01:04:28 -0300] rev 4530
Make sure the changelog mentions files whose flags changed These changes don't actually need a new filelog entry (see next patch), but if we don't mention the files in the changelog, it becomes much harder to find all changesets that touch a file (not even a "hg log --removed file" will work).
Fri, 08 Jun 2007 23:49:12 -0300 run-tests.py: set ui.slash = True
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Fri, 08 Jun 2007 23:49:12 -0300] rev 4529
run-tests.py: set ui.slash = True This should make things easier for pysh.
Fri, 08 Jun 2007 23:49:12 -0300 test-config-case: print only the Section we're interested in.
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Fri, 08 Jun 2007 23:49:12 -0300] rev 4528
test-config-case: print only the Section we're interested in. This allows us to add additional settings to the global hgrc file created by run-tests.py without breaking this test.
Fri, 08 Jun 2007 23:49:12 -0300 Add ui.slash hgrc setting
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Fri, 08 Jun 2007 23:49:12 -0300] rev 4527
Add ui.slash hgrc setting This will make most commands print paths using "/", regardless of the value of os.sep.
Fri, 08 Jun 2007 23:49:12 -0300 docopy: use repo.pathto to format paths for printing
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Fri, 08 Jun 2007 23:49:12 -0300] rev 4526
docopy: use repo.pathto to format paths for printing
Fri, 08 Jun 2007 23:49:12 -0300 Add dirstate.pathto and localrepo.pathto.
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Fri, 08 Jun 2007 23:49:12 -0300] rev 4525
Add dirstate.pathto and localrepo.pathto. Every time util.pathto is called, we have to pass the repo root and the repo cwd. dirstate.pathto is a simple convenience function that knows about the root and the cwd arguments. It's still possible to pass the cwd as an optimization. localrepo.pathto is a convenience function that just calls dirstate.pathto, just like localrepo.getcwd. dirstate.pathto becomes a single point that converts most (all?) paths from the internal representation to some OS-specific relative path for display purposes.
Fri, 08 Jun 2007 23:49:12 -0300 Use absolute paths in revert.
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Fri, 08 Jun 2007 23:49:12 -0300] rev 4524
Use absolute paths in revert.
Fri, 08 Jun 2007 23:49:12 -0300 Use absolute paths in docopy.
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Fri, 08 Jun 2007 23:49:12 -0300] rev 4523
Use absolute paths in docopy.
Fri, 08 Jun 2007 23:49:12 -0300 Use absolute paths in addremove.
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Fri, 08 Jun 2007 23:49:12 -0300] rev 4522
Use absolute paths in addremove. This is more consistent with other places in the code, which only use the "relpath" returned by cmdutil.walk for display purposes.
Thu, 07 Jun 2007 23:16:10 +0200 Add some more smart when initializing destination repository
Edouard Gomez <ed.gomez@free.fr> [Thu, 07 Jun 2007 23:16:10 +0200] rev 4521
Add some more smart when initializing destination repository
Thu, 07 Jun 2007 23:06:17 +0200 Fix hgext/convert/__init__.py rights
Edouard Gomez <ed.gomez@free.fr> [Thu, 07 Jun 2007 23:06:17 +0200] rev 4520
Fix hgext/convert/__init__.py rights
Thu, 07 Jun 2007 22:28:52 +0200 Include convert extension in packages setup
Thomas Arendsen Hein <thomas@intevation.de> [Thu, 07 Jun 2007 22:28:52 +0200] rev 4519
Include convert extension in packages setup (reported by Christian Ebert and Eric Hopper)
Thu, 07 Jun 2007 12:41:12 +0200 convert: map CVS HEAD to default branch
Thomas Arendsen Hein <thomas@intevation.de> [Thu, 07 Jun 2007 12:41:12 +0200] rev 4518
convert: map CVS HEAD to default branch
Sun, 03 Jun 2007 22:11:25 +0200 ui: make readsections() abort when configuration cannot be read.
Patrick Mezard <pmezard@gmail.com> [Sun, 03 Jun 2007 22:11:25 +0200] rev 4517
ui: make readsections() abort when configuration cannot be read.
Wed, 06 Jun 2007 20:22:52 +0200 Removed trailing whitespace and tabs from python files
Thomas Arendsen Hein <thomas@intevation.de> [Wed, 06 Jun 2007 20:22:52 +0200] rev 4516
Removed trailing whitespace and tabs from python files
Wed, 06 Jun 2007 20:17:03 +0200 Fixed python2.3 incompatibility (rsplit) in cvs code of convert extension
Thomas Arendsen Hein <thomas@intevation.de> [Wed, 06 Jun 2007 20:17:03 +0200] rev 4515
Fixed python2.3 incompatibility (rsplit) in cvs code of convert extension
Fri, 25 May 2007 08:12:33 +0200 Add a wrapper script for convert extension
Edouard Gomez <ed.gomez@free.fr> [Fri, 25 May 2007 08:12:33 +0200] rev 4514
Add a wrapper script for convert extension
Fri, 25 May 2007 00:56:48 +0200 Turns convert.py into a real extension
Edouard Gomez <ed.gomez@free.fr> [Fri, 25 May 2007 00:56:48 +0200] rev 4513
Turns convert.py into a real extension
Wed, 06 Jun 2007 19:49:47 +0200 Move convert-repo to hgext/convert/__init__.py
Thomas Arendsen Hein <thomas@intevation.de> [Wed, 06 Jun 2007 19:49:47 +0200] rev 4512
Move convert-repo to hgext/convert/__init__.py
Wed, 06 Jun 2007 19:06:43 +0200 Fixed test output for changed glog (. instead of @)
Thomas Arendsen Hein <thomas@intevation.de> [Wed, 06 Jun 2007 19:06:43 +0200] rev 4511
Fixed test output for changed glog (. instead of @)
Wed, 06 Jun 2007 19:05:18 +0200 Issue a warning if "-r ." is used with two working directory parents.
Thomas Arendsen Hein <thomas@intevation.de> [Wed, 06 Jun 2007 19:05:18 +0200] rev 4510
Issue a warning if "-r ." is used with two working directory parents. Rationale for not aborting instead: The first parent is usually more important as it is the local branch during a merge and commands like 'hg diff' and 'hg diff -r.' behave still identically (except for the warning of course). Added a test for log -r. with one and two parents.
Wed, 06 Jun 2007 18:28:48 +0200 graphlog: Print . instead of @ for working directory parents
Thomas Arendsen Hein <thomas@intevation.de> [Wed, 06 Jun 2007 18:28:48 +0200] rev 4509
graphlog: Print . instead of @ for working directory parents "." is accepted as an alias for the first working directory parent by -r/--rev
Tue, 05 Jun 2007 19:55:27 -0300 Remove atomicfile class.
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Tue, 05 Jun 2007 19:55:27 -0300] rev 4508
Remove atomicfile class. The interface provided by opener(atomic=True) is inherently unsafe: if an exception is raised in the code using the atomic file, the possibly incomplete file will be renamed to its final destination, defeating the whole purpose of atomic files. To get around this, we would either need some bad hacks involving sys.exc_info (to make sure things work in except: blocks), or an interface to say "file is complete; rename it". This is the exact interface provided by atomictempfile. Since there are no remaining users of the atomicfile class, just remove it.
Tue, 05 Jun 2007 19:55:27 -0300 Use atomictemp files to write the dirstate.
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Tue, 05 Jun 2007 19:55:27 -0300] rev 4507
Use atomictemp files to write the dirstate. atomic files are not safe in all cases.
Tue, 05 Jun 2007 19:26:36 -0300 test-serve: let run-tests.py kill the daemons
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Tue, 05 Jun 2007 19:26:36 -0300] rev 4506
test-serve: let run-tests.py kill the daemons If the daemons die while the tests are still running, we'll get additional "killed!" messages, making the test fail.
Mon, 04 Jun 2007 21:49:01 +0200 Fix bug in "hg serve -v"
Joel Rosdahl <joel@rosdahl.net> [Mon, 04 Jun 2007 21:49:01 +0200] rev 4505
Fix bug in "hg serve -v"
Mon, 04 Jun 2007 21:48:59 +0200 Add test reproducing a bug in "hg serve -v"
Joel Rosdahl <joel@rosdahl.net> [Mon, 04 Jun 2007 21:48:59 +0200] rev 4504
Add test reproducing a bug in "hg serve -v"
Mon, 04 Jun 2007 22:56:42 +0200 Merge with crew-stable
Patrick Mezard <pmezard@gmail.com> [Mon, 04 Jun 2007 22:56:42 +0200] rev 4503
Merge with crew-stable
Mon, 04 Jun 2007 09:16:53 -0500 hgk: display tags that contain spaces
TK Soh <teekaysoh@yahoo.com> [Mon, 04 Jun 2007 09:16:53 -0500] rev 4502
hgk: display tags that contain spaces
Mon, 04 Jun 2007 16:54:52 +1000 hgk: added -selectbackground grey to canvases
Bela Babik <teki321@gmail.com> [Mon, 04 Jun 2007 16:54:52 +1000] rev 4501
hgk: added -selectbackground grey to canvases
Mon, 04 Jun 2007 22:08:42 +0200 merge with stable
Thomas Arendsen Hein <thomas@intevation.de> [Mon, 04 Jun 2007 22:08:42 +0200] rev 4500
merge with stable
Mon, 04 Jun 2007 22:05:47 +0200 Obfuscate author in gitweb shortlog (issue578)
Thomas Arendsen Hein <thomas@intevation.de> [Mon, 04 Jun 2007 22:05:47 +0200] rev 4499
Obfuscate author in gitweb shortlog (issue578)
Mon, 04 Jun 2007 22:02:17 +0200 Fixed indentation in hgext/notify.py
Thomas Arendsen Hein <thomas@intevation.de> [Mon, 04 Jun 2007 22:02:17 +0200] rev 4498
Fixed indentation in hgext/notify.py
Mon, 04 Jun 2007 00:26:53 -0300 merge with crew-stable
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Mon, 04 Jun 2007 00:26:53 -0300] rev 4497
merge with crew-stable
Mon, 04 Jun 2007 00:24:48 -0300 wsgicgi: change stdin to binary mode
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Mon, 04 Jun 2007 00:24:48 -0300] rev 4496
wsgicgi: change stdin to binary mode
Mon, 04 Jun 2007 00:24:48 -0300 Also check the index file size when deciding whether to reload a revlog.
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Mon, 04 Jun 2007 00:24:48 -0300] rev 4495
Also check the index file size when deciding whether to reload a revlog. This should fix some spurious failures from test-clone-pull-corruption (issue552).
Mon, 04 Jun 2007 00:24:48 -0300 use .extend instead of .append in readtags
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Mon, 04 Jun 2007 00:24:48 -0300] rev 4494
use .extend instead of .append in readtags
Fri, 20 Apr 2007 16:17:42 -0500 hbisect: fix a typo in error message
TK Soh <teekaysoh@yahoo.com> [Fri, 20 Apr 2007 16:17:42 -0500] rev 4493
hbisect: fix a typo in error message
Sun, 03 Jun 2007 14:38:52 -0300 patch.diff: avoid calling workingctx().manifest()
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Sun, 03 Jun 2007 14:38:52 -0300] rev 4492
patch.diff: avoid calling workingctx().manifest() Right now, to generate the manifest of the working dir, we have to perform a full walk of the working dir, which will be very slow, especially if we're interested in only a small part of it. Since we use the manifest only to find out the mode of files for git patches, manually build an execf function to do it. This should fix issue567.
Sun, 03 Jun 2007 17:18:48 +0200 Merge with crew-stable
Patrick Mezard <pmezard@gmail.com> [Sun, 03 Jun 2007 17:18:48 +0200] rev 4491
Merge with crew-stable
Fri, 15 Dec 2006 10:32:57 +0300 hgk - fix CR issues on windows
"Andrei Vermel <avermel@mail.ru>" [Fri, 15 Dec 2006 10:32:57 +0300] rev 4490
hgk - fix CR issues on windows
Thu, 24 May 2007 16:32:38 +0200 Add sending date to notify message.
Mathieu Clabaut <mathieu.clabaut@gmail.com> [Thu, 24 May 2007 16:32:38 +0200] rev 4489
Add sending date to notify message. When using SMTP, no date field was set into the message, which causes it to be displayed as being send on 1st january 1970 on most MUA.
Sat, 02 Jun 2007 09:04:23 -0700 Merge with crew.
Bryan O'Sullivan <bos@serpentine.com> [Sat, 02 Jun 2007 09:04:23 -0700] rev 4488
Merge with crew.
Sun, 27 May 2007 14:58:59 -0700 patchbomb: Fail early if no revs given to email
Bryan O'Sullivan <bos@serpentine.com> [Sun, 27 May 2007 14:58:59 -0700] rev 4487
patchbomb: Fail early if no revs given to email
Sun, 27 May 2007 14:54:00 -0700 patchbomb: Fix typo.
Bryan O'Sullivan <bos@serpentine.com> [Sun, 27 May 2007 14:54:00 -0700] rev 4486
patchbomb: Fix typo.
Sun, 27 May 2007 14:53:46 -0700 patchbomb: Hoist sender config higher.
Bryan O'Sullivan <bos@serpentine.com> [Sun, 27 May 2007 14:53:46 -0700] rev 4485
patchbomb: Hoist sender config higher.
Sun, 27 May 2007 14:43:29 -0700 Automated merge with http://hg.intevation.org/mercurial/crew
Bryan O'Sullivan <bos@serpentine.com> [Sun, 27 May 2007 14:43:29 -0700] rev 4484
Automated merge with http://hg.intevation.org/mercurial/crew
Sun, 27 May 2007 14:40:14 -0700 patchbomb: Validate email config before we start prompting for info.
Bryan O'Sullivan <bos@serpentine.com> [Sun, 27 May 2007 14:40:14 -0700] rev 4483
patchbomb: Validate email config before we start prompting for info.
Sun, 27 May 2007 14:26:54 -0700 Introduce find_exe. Use instead of find_in_path for programs.
Bryan O'Sullivan <bos@serpentine.com> [Sun, 27 May 2007 14:26:54 -0700] rev 4482
Introduce find_exe. Use instead of find_in_path for programs. The behaviour of find_in_path was broken for config options containing path names, because it always searched the given path, even when not necessary. The find_exe function is more polite: if the name passed to it contains a path component, it just returns it.
Sun, 27 May 2007 13:50:59 -0700 ui: Rename has_config to has_section.
Bryan O'Sullivan <bos@serpentine.com> [Sun, 27 May 2007 13:50:59 -0700] rev 4481
ui: Rename has_config to has_section.
Sun, 27 May 2007 13:41:35 -0700 patchbomb: Defer the import of readline.
Bryan O'Sullivan <bos@serpentine.com> [Sun, 27 May 2007 13:41:35 -0700] rev 4480
patchbomb: Defer the import of readline. If imported at the top of the module, the import appears to succeed, but raw_input doesn't acquire magic editing fu. I suspect this has something to do with the newish demandimport code, because the prior code worked with demandload.
Sun, 27 May 2007 13:29:04 -0700 patchbomb: Don't prompt for headers until sure we have revs to export.
Bryan O'Sullivan <bos@serpentine.com> [Sun, 27 May 2007 13:29:04 -0700] rev 4479
patchbomb: Don't prompt for headers until sure we have revs to export. The prior behaviour was to always prompt for headers, and only then bomb out if there were actually no revs to send.
Fri, 01 Jun 2007 18:40:14 -0500 Add support for url#id syntax
Matt Mackall <mpm@selenic.com> [Fri, 01 Jun 2007 18:40:14 -0500] rev 4478
Add support for url#id syntax This allows you to do: hg clone http://server/repo#stable which is equivalent to: hg clone -r stable http://server/repo Future incoming, outgoing, and push commands will default to using this id because it's recorded in the default path. Other commands that accept URLs (push, pull, bundle, incoming, and outgoing) also accept this syntax.
Fri, 01 Jun 2007 18:52:18 -0500 clone: checkout the "default" branch if available
Matt Mackall <mpm@selenic.com> [Fri, 01 Jun 2007 18:52:18 -0500] rev 4477
clone: checkout the "default" branch if available
Sat, 02 Jun 2007 09:21:56 -0500 mq: pass a URL to clone
Matt Mackall <mpm@selenic.com> [Sat, 02 Jun 2007 09:21:56 -0500] rev 4476
mq: pass a URL to clone
Fri, 01 Jun 2007 14:07:42 -0500 Warn about large files on hg add
Matt Mackall <mpm@selenic.com> [Fri, 01 Jun 2007 14:07:42 -0500] rev 4475
Warn about large files on hg add
Fri, 01 Jun 2007 19:49:09 +0200 merge with stable
Thomas Arendsen Hein <thomas@intevation.de> [Fri, 01 Jun 2007 19:49:09 +0200] rev 4474
merge with stable
Fri, 01 Jun 2007 19:45:05 +0200 Make "hg incoming -r revision_number" work for remote repos (issue566)
Thomas Arendsen Hein <thomas@intevation.de> [Fri, 01 Jun 2007 19:45:05 +0200] rev 4473
Make "hg incoming -r revision_number" work for remote repos (issue566) Uses the remote repository's lookup method as pull does and only transfers what is needed to calculate incoming changesets. One minor problem: As only the needed changesets are transfered and stored in a local bundle repository, the tip tag of this bundle is shows despite not being the tip changeset of the remote repository. (see "+tag: tip" in tests/test-incoming-outgoing.out in this patch)
Fri, 01 Jun 2007 16:02:49 +0200 Corrected similarity parameter used in test-addremove
Thomas Arendsen Hein <thomas@intevation.de> [Fri, 01 Jun 2007 16:02:49 +0200] rev 4472
Corrected similarity parameter used in test-addremove 0.5 meant 50% in the early stages of addremove -s, now 50 has to be used.
Fri, 01 Jun 2007 16:00:40 +0200 addremove: comparing two empty files caused ZeroDivisionError
Thomas Arendsen Hein <thomas@intevation.de> [Fri, 01 Jun 2007 16:00:40 +0200] rev 4471
addremove: comparing two empty files caused ZeroDivisionError (found by Giorgos Keramidas)
Fri, 01 Jun 2007 13:03:21 +0200 Add archive download links to hgweb search template
Thomas Arendsen Hein <thomas@intevation.de> [Fri, 01 Jun 2007 13:03:21 +0200] rev 4470
Add archive download links to hgweb search template
Fri, 01 Jun 2007 13:00:27 +0200 merge with crew
Thomas Arendsen Hein <thomas@intevation.de> [Fri, 01 Jun 2007 13:00:27 +0200] rev 4469
merge with crew
Thu, 31 May 2007 20:12:40 -0400 gitweb: Fixed-up search template
Josef "Jeff" Sipek <jeffpc@josefsipek.net> [Thu, 31 May 2007 20:12:40 -0400] rev 4468
gitweb: Fixed-up search template It seems that the search template has been forgoten over time, and needed major revamping.
Thu, 31 May 2007 19:59:02 -0400 gitweb: Add search box to the summary page
Josef "Jeff" Sipek <jeffpc@josefsipek.net> [Thu, 31 May 2007 19:59:02 -0400] rev 4467
gitweb: Add search box to the summary page
Tue, 29 May 2007 06:52:40 -0400 gitweb: file diff: Display metadata in same order as changeset does
Josef "Jeff" Sipek <jeffpc@josefsipek.net> [Tue, 29 May 2007 06:52:40 -0400] rev 4466
gitweb: file diff: Display metadata in same order as changeset does
Tue, 29 May 2007 11:16:57 -0400 gitweb: file annotate: Display metadata in same order as changeset does
Josef "Jeff" Sipek <jeffpc@josefsipek.net> [Tue, 29 May 2007 11:16:57 -0400] rev 4465
gitweb: file annotate: Display metadata in same order as changeset does
Tue, 29 May 2007 11:10:28 -0400 gitweb: file rev template: Display metadata in same order as changeset does
Josef "Jeff" Sipek <jeffpc@josefsipek.net> [Tue, 29 May 2007 11:10:28 -0400] rev 4464
gitweb: file rev template: Display metadata in same order as changeset does
Tue, 29 May 2007 11:07:33 -0400 gitweb: changeset template: remove manifest link from cset metadata
Josef "Jeff" Sipek <jeffpc@josefsipek.net> [Tue, 29 May 2007 11:07:33 -0400] rev 4463
gitweb: changeset template: remove manifest link from cset metadata
Fri, 11 May 2007 17:05:44 +0200 purge: add --include and --exclude options
Emanuele Aina <em@nerd.ocracy.org> [Fri, 11 May 2007 17:05:44 +0200] rev 4462
purge: add --include and --exclude options
Tue, 29 May 2007 16:42:05 +0200 hgweb: use generator to count parity of horizontal stripes for easier reading.
Thomas Arendsen Hein <thomas@intevation.de> [Tue, 29 May 2007 16:42:05 +0200] rev 4461
hgweb: use generator to count parity of horizontal stripes for easier reading. - use web.stripes in all places and consistently - start with parity0 for lists generated in reverse (e.g. changelog)
Tue, 29 May 2007 07:00:36 -0400 gitweb: shortlog: display nav links near the bottom
Josef "Jeff" Sipek <jeffpc@josefsipek.net> [Tue, 29 May 2007 07:00:36 -0400] rev 4460
gitweb: shortlog: display nav links near the bottom
Tue, 29 May 2007 07:00:26 -0400 gitweb: file log: display nav links near the bottom
Josef "Jeff" Sipek <jeffpc@josefsipek.net> [Tue, 29 May 2007 07:00:26 -0400] rev 4459
gitweb: file log: display nav links near the bottom
Tue, 29 May 2007 06:35:45 -0400 gitweb: file log template: removed excesive whitespace
Josef "Jeff" Sipek <jeffpc@josefsipek.net> [Tue, 29 May 2007 06:35:45 -0400] rev 4458
gitweb: file log template: removed excesive whitespace
Tue, 29 May 2007 05:08:01 -0400 hgweb: manifest: pass parity for the '[up]' link
Josef "Jeff" Sipek <jeffpc@josefsipek.net> [Tue, 29 May 2007 05:08:01 -0400] rev 4457
hgweb: manifest: pass parity for the '[up]' link
Tue, 29 May 2007 04:57:12 -0400 gitweb: manifest template: do not include trailing slash in directory names
Josef "Jeff" Sipek <jeffpc@josefsipek.net> [Tue, 29 May 2007 04:57:12 -0400] rev 4456
gitweb: manifest template: do not include trailing slash in directory names
Tue, 29 May 2007 03:37:03 -0400 gitweb: Add title separator to tags template
Josef "Jeff" Sipek <jeffpc@josefsipek.net> [Tue, 29 May 2007 03:37:03 -0400] rev 4455
gitweb: Add title separator to tags template
Tue, 29 May 2007 15:31:29 +0200 gitweb: changelog template: removed excessive whitespace
Josef "Jeff" Sipek <jeffpc@josefsipek.net> [Tue, 29 May 2007 15:31:29 +0200] rev 4454
gitweb: changelog template: removed excessive whitespace
Tue, 29 May 2007 15:30:40 +0200 gitweb: shortlog template: removed excessive whitespace, added title bar.
Josef "Jeff" Sipek <jeffpc@josefsipek.net> [Tue, 29 May 2007 15:30:40 +0200] rev 4453
gitweb: shortlog template: removed excessive whitespace, added title bar. The title bar is currently empty, this is just a preparation for filling it with content.
Tue, 29 May 2007 03:27:02 -0400 gitweb: Fixed manifest template opening an extra div tag
Josef "Jeff" Sipek <jeffpc@josefsipek.net> [Tue, 29 May 2007 03:27:02 -0400] rev 4452
gitweb: Fixed manifest template opening an extra div tag
Tue, 29 May 2007 03:19:45 -0400 gitweb: Fix summary page ellipsis line colspans
Josef "Jeff" Sipek <jeffpc@josefsipek.net> [Tue, 29 May 2007 03:19:45 -0400] rev 4451
gitweb: Fix summary page ellipsis line colspans
Thu, 17 May 2007 13:55:24 -0400 accept -r REV in more places
Daniel Holth <dholth@fastmail.fm> [Thu, 17 May 2007 13:55:24 -0400] rev 4450
accept -r REV in more places Commands affected: * update * merge * backout
Sun, 20 May 2007 19:32:22 +0200 Merge with crew-stable.
Patrick Mezard <pmezard@gmail.com> [Sun, 20 May 2007 19:32:22 +0200] rev 4449
Merge with crew-stable.
Sun, 20 May 2007 19:27:14 +0200 Fix issue 563: error in _hg_commit in the contrib/zsh_completion script.
Henri Precheur <henry@precheur.org> [Sun, 20 May 2007 19:27:14 +0200] rev 4448
Fix issue 563: error in _hg_commit in the contrib/zsh_completion script.
Wed, 16 May 2007 01:10:12 -0400 use documented convert-repo interface
Daniel Holth <dholth@fastmail.fm> [Wed, 16 May 2007 01:10:12 -0400] rev 4447
use documented convert-repo interface
Wed, 16 May 2007 01:07:27 -0400 document conversion interface
Daniel Holth <dholth@fastmail.fm> [Wed, 16 May 2007 01:07:27 -0400] rev 4446
document conversion interface
Sat, 19 May 2007 22:51:43 +0200 Merge with crew-stable.
Patrick Mezard <pmezard@gmail.com> [Sat, 19 May 2007 22:51:43 +0200] rev 4445
Merge with crew-stable.
Sat, 19 May 2007 22:47:01 +0200 Fix issue 562: .hgignore requires newline at end.
Patrick Mezard <pmezard@gmail.com> [Sat, 19 May 2007 22:47:01 +0200] rev 4444
Fix issue 562: .hgignore requires newline at end. End-of-lines characters where discarded without any check for existence.
Sat, 19 May 2007 22:46:59 +0200 Test issue 562: .hgignore requires newline at end
Patrick Mezard <pmezard@gmail.com> [Sat, 19 May 2007 22:46:59 +0200] rev 4443
Test issue 562: .hgignore requires newline at end
Thu, 17 May 2007 20:09:52 -0700 Make hg import --exact work when a new branch is created by an import.
Eric Hopper <hopper@omnifarious.org> [Thu, 17 May 2007 20:09:52 -0700] rev 4442
Make hg import --exact work when a new branch is created by an import.
Thu, 17 May 2007 20:09:49 -0700 Alter test to test import --exact to make sure it works with branches.
Eric Hopper <hopper@omnifarious.org> [Thu, 17 May 2007 20:09:49 -0700] rev 4441
Alter test to test import --exact to make sure it works with branches.
Thu, 17 May 2007 20:09:47 -0700 Add ability to parse branch information to hg import
Eric Hopper <hopper@omnifarious.org> [Thu, 17 May 2007 20:09:47 -0700] rev 4440
Add ability to parse branch information to hg import
Thu, 17 May 2007 20:09:44 -0700 Add a test for the Branch header being in hg export.
Eric Hopper <hopper@omnifarious.org> [Thu, 17 May 2007 20:09:44 -0700] rev 4439
Add a test for the Branch header being in hg export.
Thu, 17 May 2007 09:29:30 -0700 Fix hg import --exact bug that hangs hg on failure.
Eric Hopper <hopper@omnifarious.org> [Thu, 17 May 2007 09:29:30 -0700] rev 4438
Fix hg import --exact bug that hangs hg on failure.
Sun, 13 May 2007 19:15:54 -0700 Make mergepatch save queue now that qpush isn't.
Brendan Cully <brendan@kublai.com> [Sun, 13 May 2007 19:15:54 -0700] rev 4437
Make mergepatch save queue now that qpush isn't.
Thu, 10 May 2007 13:42:36 -0700 Add branch information to hg export.
Eric Hopper <hopper@omnifarious.org> [Thu, 10 May 2007 13:42:36 -0700] rev 4436
Add branch information to hg export.
Sat, 12 May 2007 21:09:31 +0200 Add ui.patch option.
Patrick Mezard <pmezard@gmail.com> [Sat, 12 May 2007 21:09:31 +0200] rev 4435
Add ui.patch option. ui.patch overrides the default patch/gpatch command and options.
Sat, 12 May 2007 21:09:29 +0200 Fix issue483 - mq does not work under windows with gnu-win32 patch.
Patrick Mezard <pmezard@gmail.com> [Sat, 12 May 2007 21:09:29 +0200] rev 4434
Fix issue483 - mq does not work under windows with gnu-win32 patch. Add --binary option to patch command under win32.
Mon, 07 May 2007 21:44:11 +0900 mercurial.el: fix error on hg-read-rev() with small tip, and cleanups
NIIMI Satoshi <sa2c@sa2c.net> [Mon, 07 May 2007 21:44:11 +0900] rev 4433
mercurial.el: fix error on hg-read-rev() with small tip, and cleanups * Fix error if tip revision is smaller than hg-rev-completion-limit If tip revision is 10, "hg log -r -100:tip" fails. * Remove dependencies on cl package at runtime Quote from GNU Emacs Lisp Reference Manual, Emacs Lisp Coding Conventions: > * Please don't require the `cl' package of Common Lisp extensions at > run time. Use of this package is optional, and it is not part of > the standard Emacs namespace. If your package loads `cl' at run > time, that could cause name clashes for users who don't use that > package. * Check XEmacs at compile time Since byte-compiled file is not portable between GNU Emacs and XEmacs, checking type of emacs can be done at compile time. This reduces byte-compiler warnings. * Defvar variables binded dynamically and used across functions * Combine status output string to state symbol alist into a variable, and use char instead of string for key of state alist * Make hg-view-mode as minor-mode * Define keymaps as conventions
Tue, 08 May 2007 13:10:27 -0700 mq: add qgoto command.
Bryan O'Sullivan <bos@serpentine.com> [Tue, 08 May 2007 13:10:27 -0700] rev 4432
mq: add qgoto command.
Tue, 08 May 2007 11:51:16 -0700 Fix typo in bugzilla extension.
Bryan O'Sullivan <bos@serpentine.com> [Tue, 08 May 2007 11:51:16 -0700] rev 4431
Fix typo in bugzilla extension.
Tue, 08 May 2007 13:08:20 -0700 Fix test-patchbomb for crew
Brendan Cully <brendan@kublai.com> [Tue, 08 May 2007 13:08:20 -0700] rev 4430
Fix test-patchbomb for crew
Tue, 08 May 2007 11:54:39 -0700 mq.el: add mq-signoff, to sign off on a patch
Bryan O'Sullivan <bos@serpentine.com> [Tue, 08 May 2007 11:54:39 -0700] rev 4429
mq.el: add mq-signoff, to sign off on a patch
Tue, 08 May 2007 11:54:39 -0700 mq.el: don't fill half the screen with a single line of output.
Bryan O'Sullivan <bos@serpentine.com> [Tue, 08 May 2007 11:54:39 -0700] rev 4428
mq.el: don't fill half the screen with a single line of output.
Tue, 08 May 2007 11:54:39 -0700 mq.el: add hook to run when finishing the edit of a patch.
Bryan O'Sullivan <bos@serpentine.com> [Tue, 08 May 2007 11:54:39 -0700] rev 4427
mq.el: add hook to run when finishing the edit of a patch.
Tue, 08 May 2007 11:54:39 -0700 imported patch mq-refresh-git.patch
Bryan O'Sullivan <bos@serpentine.com> [Tue, 08 May 2007 11:54:39 -0700] rev 4426
imported patch mq-refresh-git.patch
Tue, 08 May 2007 11:54:39 -0700 mq.el: allow mq-diff to take a git option.
Bryan O'Sullivan <bos@serpentine.com> [Tue, 08 May 2007 11:54:39 -0700] rev 4425
mq.el: allow mq-diff to take a git option.
Tue, 08 May 2007 11:54:39 -0700 mq.el: add mq-diff function.
Bryan O'Sullivan <bos@serpentine.com> [Tue, 08 May 2007 11:54:39 -0700] rev 4424
mq.el: add mq-diff function.
(0) -3000 -1000 -120 +120 tip