- Sep 20, 2010
-
-
Patrick Mezard authored
-
Patrick Mezard authored
-
Patrick Mezard authored
-
Patrick Mezard authored
-
Patrick Mezard authored
-
Patrick Mezard authored
-
Martin Geisler authored
-
Martin Geisler authored
-
Martin Geisler authored
-
- Sep 17, 2010
-
-
Brodie Rao authored
Raise error.ParseError instead of allowing re.error to bubble up.
-
- Sep 20, 2010
-
-
Martin Geisler authored
The zip file format stores the date using "MS-DOS format" which apparently means that they use 1980 as their epoch. Python's zipfile module emits deprecation warnings of this form /usr/lib/python2.6/zipfile.py:1108: DeprecationWarning: struct integer overflow masking is deprecated self.fp.write(zinfo.FileHeader()) /usr/lib/python2.6/zipfile.py:1108: DeprecationWarning: 'H' format requires 0 <= number <= 65535 self.fp.write(zinfo.FileHeader()) /home/mg/src/mercurial-crew/mercurial/archival.py:169: DeprecationWarning: struct integer overflow masking is deprecated self.z.close() /home/mg/src/mercurial-crew/mercurial/archival.py:169: DeprecationWarning: 'H' format requires 0 <= number <= 65535 self.z.close() when it is given such old timestamps. This fixes this by silently clamping the date to 1980.
-
- Sep 17, 2010
-
-
Steve Borho authored
-
Steve Borho authored
Changeset 0852da25a31b changed the result of this test. The 'hg update 0' command, which causes a merge of modified a.txt, now leaves a.txt in the EOLN format specified by .hgeol as it was committed in revision 0. Previously, it used the .hgeol contents from the working directory before the update.
-
- Sep 16, 2010
-
-
Matt Mackall authored
-
Matt Mackall authored
-
- Sep 12, 2010
-
-
Brodie Rao authored
Without specifying the parent revision of the working copy, users will update to tip, which is most likely the other head they were trying to merge, not the revision they were at before the merge.
-
- Sep 16, 2010
-
-
Peter Arrenbrecht authored
-
- Sep 15, 2010
-
-
Adrian Buehlmann authored
-
- Sep 16, 2010
-
-
Pascal Quantin authored
As stated in http://msdn.microsoft.com/en-us/library/cc664727.aspx, when you compile an application with MSVC 2008 SP1 it is bound by default to the original CRT version (9.0.21022.8). This is the case for Python 2.6 up to 3.1. If the wrong CRT version is embedded in the Inno Setup installer, with a PC that does not have the MSVC 2008 redistributable package installed, hg will refuse to launch with an error: "the system cannot execute the specified program".
-
Matt Mackall authored
-
Matt Mackall authored
-
- Sep 15, 2010
-
-
Steve Borho authored
-
Steve Borho authored
This fixes problems some have reported using the eol extension together with TortoiseHg. It ensures the ui associated with the repository has the preupdate.eol hook configured.
-
Adrian Buehlmann authored
-
Adrian Buehlmann authored
-
Adrian Buehlmann authored
-
Will Maier authored
-
Will Maier authored
-
- Sep 14, 2010
-
-
Adrian Buehlmann authored
-
Adrian Buehlmann authored
-
Adrian Buehlmann authored
-
Adrian Buehlmann authored
-
- Sep 15, 2010
-
-
Matt Mackall authored
-
Sune Foldager authored
This patch fixes issues with stream cloning in the presense of parentdelta, lwcopy and similar additions that change the interpretation of the revlog format, or the format itself. Currently, the stream capability is sent like this: stream=<version of changelog> But the client doesn't actually check the version number; also, it only checks the changelog and it doesn't capture the interpretation-changes and flag-changes in parentdelta and lwcopy. This patch removes the 'stream' capability whenever we use a non-basic revlog format, to prevent old clients from receiving incorrect data. In those cases, a new capability called 'streamreqs' is added instead. Instead of a revlog version, it comes with a list of revlog-format relevant requirements, which are a subset of the repository requirements, excluding things that are not relevant for stream. New clients use this to determine whether or not they can stream. Old clients only look for the 'stream' capability, as always. New servers will still send this when serving old repositories.
-
Sune Foldager authored
-
- Sep 14, 2010
-
-
Matt Mackall authored
-
Matt Mackall authored
-
Matt Mackall authored
-
- Sep 13, 2010