Fri Jan 20 00:15:23 CET 2006  Tommy Pettersson <[EMAIL PROTECTED]>
  * revert optimization for apply_list
  The optimization made unrecord and unpull sometimes fail.
  It, unnecessarily, removes the --set-script-executable functionality.

Mon Jan 23 01:49:00 CET 2006  Tommy Pettersson <[EMAIL PROTECTED]>
  * reimplement --set-script-executable after apply_list unoptimization
New patches:

[revert optimization for apply_list
Tommy Pettersson <[EMAIL PROTECTED]>**20060119231523
 The optimization made unrecord and unpull sometimes fail.
 It, unnecessarily, removes the --set-script-executable functionality.
] {
hunk ./PatchApply.lhs 26
-import DarcsFlags ( DarcsFlag( SetScriptsExecutable ) )
+import DarcsFlags ( DarcsFlag() )
hunk ./PatchApply.lhs 28
-                          breakPS, nullPS, nilPS, linesPS, takePS,
+                          breakPS, nullPS, nilPS, linesPS,
hunk ./PatchApply.lhs 141
-apply_list opts the_ps@((FP f (Hunk _ _ _)):_)
- = case get_hunks 0 the_ps of
-       (hs, the_ps') ->
-           do mModifyFilePS f $ hunkmod hs
-              case hs of
-                ((1,_,(n:_)):_) | takePS 2 n == packString "#!" &&
-                                  SetScriptsExecutable `elem` opts
-                                -> mSetFileExecutable f True
-                _ -> return ()
-              apply_list opts the_ps'
-    where hunkmod hs ps =
-             case applyHunkLines hs (impossible, Just ps) of
-                 Just (_, Just ps') -> return ps'
+apply_list opts ((FP f h@(Hunk _ _ _)):the_ps)
+ = case span f_hunk the_ps of
+       (xs, ps') ->
+           do let foo = h:map (\(FP _ h') -> h') xs
+              mModifyFilePS f $ hunkmod foo
+              apply_list opts ps'
+    where f_hunk (FP f' (Hunk _ _ _)) | f == f' = True
+          f_hunk _ = False
+          hunkmod [] ps = return ps
+          hunkmod (Hunk line old new:hs) ps
+           = case applyHunkLines [(line,old,new)] (impossible, Just ps) of
+                 Just (_, Just ps') -> hunkmod hs ps'
hunk ./PatchApply.lhs 155
-          -- off is the number of '\n's past
-          get_hunks off (FP f' (Hunk line old new):ps)
-           | f == f' && (line > 1 + off || off == 0)
-              = let new_len = length new
-                    off' = if line == 1 then new_len
-                                        else line + new_len - 2
-                    (xs, ys) = get_hunks off' ps
-                in ((line - off, old, new):xs, ys)
-          get_hunks _ ps = ([], ps)
+          hunkmod _ _ = impossible
}

[reimplement --set-script-executable after apply_list unoptimization
Tommy Pettersson <[EMAIL PROTECTED]>**20060123004900] {
hunk ./PatchApply.lhs 26
-import DarcsFlags ( DarcsFlag() )
+import DarcsFlags ( DarcsFlag( SetScriptsExecutable ) )
hunk ./PatchApply.lhs 28
-                          breakPS, nullPS, nilPS, linesPS,
+                          breakPS, nullPS, nilPS, linesPS, takePS,
hunk ./PatchApply.lhs 146
+              case h of
+                (Hunk 1 _ (n:_)) | takePS 2 n == packString "#!" &&
+                                   SetScriptsExecutable `elem` opts
+                                 -> mSetFileExecutable f True
+                _ -> return ()
}

Context:

[call unnamed patches "changes" in interactive patch selection dialogue
Tommy Pettersson <[EMAIL PROTECTED]>**20060113203829
 It currently affects record, revert and amend, but will generally do
 "the right thing".
] 
[fix pathname in comment in darcs.cgi.in
[EMAIL PROTECTED] 
[fix win32 build breaks
Will <[EMAIL PROTECTED]>**20060112054853] 
[fix content-type in rss output of cgi
Will <[EMAIL PROTECTED]>**20060110052938] 
[resolve conflict
Tommy Pettersson <[EMAIL PROTECTED]>**20060108173148] 
[Obey normal autoconf conventions.
Dave Love <[EMAIL PROTECTED]>**20051117190231
 Allows you to `make install prefix=...', for instance, and doesn't change
 default for sysconfdir.
] 
[add link to darcs-unstable repo on darcs home page
Tommy Pettersson <[EMAIL PROTECTED]>**20060107212721] 
[Don't say "yes" in an infinite loop.
Bill Trost <[EMAIL PROTECTED]>**20060108162605
 I ended up with this test hanging forever because the while loop wasn't getting
 a SIGPIPE because of the way my editor environment (no controlling tty?) was
 set up. We have a pretty good idea of how many "y"s are needed anyhow.
] 
[fix crash caused by tests failing on amend-record
Zachary P. Landau <[EMAIL PROTECTED]>**20060108174722] 
[More canonization
Eric Kow <[EMAIL PROTECTED]>**20060108235935
 
 canonized : Mark Stosberg, Erik Schnetter, Joeri van Ruth 
 identified: Richard Smith, Victor Hugo Borja Rodriguez
 
] 
[Improved single-character prompt (RT #261)
Eric Kow <[EMAIL PROTECTED]>**20060108225741
 
 In the dialogue prompting for a single character as a response, if the
 user just presses enter, we behave is if we got an invalid response.
 This way, the user gets a little bit of feedback that he should respond
 differently.
   
 Also: refactors the case where there is a default answer and where the
 user may press '?' for help.
 
] 
[Corrections to bugfix for (RT #466)
Eric Kow <[EMAIL PROTECTED]>**20060108225411
 
 The bug fix for case insensitive filesystems was incorrect because
  1. canonicalizePath does not canonicalise the same filename with
     different cases into the same entry
  2. RT #466 affects case sensitive and case insensitive file 
     systems alike (i.e. the bug description was wrong)
  3. canonicalizePath is not available in ghc 6.2.2
 
 This correction also has the advantage of being much simpler and closer
 to what David Roundy suggested on the bug tracker.  We remove the old
 file from the slurpy so that it doesn't get mistaken for the new file.  
 
] 
[use _darcs/pristine in regression tests
Eric Kow <[EMAIL PROTECTED]>**20060108222000] 
[Make the "record --pipe" docs match the program behavior.
Bill Trost <[EMAIL PROTECTED]>**20060107050910] 
[Make --exact-version also work if darcs is built from "make dist" tar ball
Marnix Klooster <[EMAIL PROTECTED]>**20060106205857
 
 This is to prevent "darcs --exact-version" outputting something like
 
   darcs compiled on Mar  2 2005, at 10:56:16
   unknown
 
 as it does when building from the output of "make dist", e.g., from the
 official tarballs at darcs.net.  (This is what a lot of people and distros do.
 Gentoo does this, and I'm using Gentoo, and I want to be able to do "darcs
 --exact-version" and have it output something sensible.)
 
 The reason that this problem occurs is that while doing 'make predist' (in the
 'predist' preference), Context.hs was nicely preserved by predist_copy, but
 then thrown away by distclean which calls clean.  So the resulting tarball has
 no Context.hs, which results in the "unknown" exact version.
 
 The solution consists of the following:
 
  * Only remove Context.hs in "clean" if it can be rebuilt using its rule
    in automake.mk (i.e., if _darcs/inventory exists, so if we are in a
    repository).
 
  * Target realclean is renamed to the newer maintainer-clean and extended a
    little, according to the GNU make manual (not strictly necessary).
 
 As a result of this, we now follow GNU makefile conventions more closely.  See
 the rules in the "Standard Targets for Users" section of the GNU make manual
 (currently at http://www.gnu.org/software/make/manual/html_node/make_127.html),
 and an interpretation of these rules in the "What Gets Cleaned" section of the
 GNU automake manual (currently at
 http://www.gnu.org/software/automake/manual/html_node/Clean.html).
 
 Thanks to Taral <[EMAIL PROTECTED]> for the above info.
] 
[Coalesce setpref (issue70 and RT #349)
Eric Kow <[EMAIL PROTECTED]>**20051230230842] 
[only create log file when a long comment was requested
Zachary P. Landau <[EMAIL PROTECTED]>**20060108181034] 
[Use temporary file when editing send description.
Zachary P. Landau <[EMAIL PROTECTED]>**20051217212051] 
[Extended date matching functionality. 
Eric Kow <[EMAIL PROTECTED]>**20051228210942
 (issue31 and RT #34)
 
 Now accepts ISO 8601 intervals (mostly) as well as a larger subset of
 English (including times like "yesterday at noon").
 
 Note: also includes corrections to ISO 8601 date/time parsing, using
 a more elegant technique of building dates up. 
 
] 
[Partial implementation of iso 8601 dates
Eric Kow <[EMAIL PROTECTED]>**20051228123040
 (issue31) - first step 
 
 reluctant to implement (ambiguous!): 
   * years > 9999  
   * truncated representations with implied century (89 for 1989) 
 unimplemented: 
   * time intervals -- this might be good to have in darcs
   * negative dates (BC)                    
 
] 
[Allow rename to different case (RT #466, case-insensitive file systems)
Eric Kow <[EMAIL PROTECTED]>**20060106000141
 
 Creates an exception in the check that the new name does not already exists;
 it's ok if both names reduce to the same canonical path
 
] 
[Update "darcs init" documentation to match its behavior.
Bill Trost <[EMAIL PROTECTED]>**20060105040737] 
[Invert 'file exists already' error message in mv
Eric Kow <[EMAIL PROTECTED]>**20051230220431
 
 mv used the wrong error message for --case-ok and opposite 
 
] 
[bug fixes for darcs help
Eric Kow <[EMAIL PROTECTED]>**20051230011003] 
[Canonize myself and almost all other contributers.
Eric Kow <[EMAIL PROTECTED]>**20051229140428
 Add function to append name to email address 
 
 Merged: Marnix Klooster, Eric Kow, Andres Loeh, Esa Ilari Vuokko 
 
 Looked up name on Google for most orphaned email addresses.
 Hope nobody actually objects to this.
 
] 
[add a --without-docs option to configure
[EMAIL PROTECTED] 
[only print 'making executable' in verbose mode
Eric Kow <[EMAIL PROTECTED]>**20051226182817] 
[fix for Issue14 remove darcs-createrepo
Jason Dagit <[EMAIL PROTECTED]>**20051224002230] 
[Support --interactive option in changes command (issue #59).
Zachary P. Landau <[EMAIL PROTECTED]>**20051221052049] 
[Fix type incompatibility between C code and Haskell foreign declaration.
Juliusz Chroboczek <[EMAIL PROTECTED]>**20060106154108] 
[Move patchSetToPatches to Repository.lhs
Zachary P. Landau <[EMAIL PROTECTED]>**20051219043719] 
[Use _darcs/pristine instead of _darcs/current.
Juliusz Chroboczek <[EMAIL PROTECTED]>**20051215180814
 All versions of Darcs since 1.0.2rc1 are able to handle either name.  This
 will break compatibility of new repositories with older versions.
] 
[Do not document "darcs query manifest" twice.
Erik Schnetter <[EMAIL PROTECTED]>**20051222125103] 
[Rename git.c to gitlib.c
Erik Schnetter <[EMAIL PROTECTED]>**20051222115318
 
 On case-insensitive file systems, the source files Git.lhs and git.c
 lead to the same object file git.o.  Renaming git.c to gitlib.c solves
 this problem.
] 
[Remove periods from the AC_MSG_CHECKING call for the release state.
Matt Kraai <[EMAIL PROTECTED]>**20051220174536] 
[Implementation of help command
Eric Kow <[EMAIL PROTECTED]>**20051218172558
 (RT #307)
 
 Provides a command to display usage information on the screen.
  darcs help           = darcs --help
  darcs help --verbose = darcs --extended-help
  darcs help command   = darcs command --help
 
 This implementation understands abbreviated commands and subcommands.
 Slightly refactors darcs.lhs.
 
] 
[reorganize comments (and add a comment) in Depends.lhs.
David Roundy <[EMAIL PROTECTED]>**20051218122029] 
[fix bug in doesDirectoryReallyExist.
David Roundy <[EMAIL PROTECTED]>**20051020121710
 We were failing with an exception if there was no such object.  The error
 message was:
 
 Fail: getSymbolicLinkStatus: does not exist
] 
[fix type of foreign calls in FastPackedString.
David Roundy <[EMAIL PROTECTED]>**20050920125800] 
[rename RepoTypes to PatchSet.
David Roundy <[EMAIL PROTECTED]>**20050917133920] 
[remove PatchSequence, which has long been obsolete.
David Roundy <[EMAIL PROTECTED]>**20050917133313
 The patch removes remaining vestiges of PatchSequence, which was obsoleted
 long ago by PatchSet (which stores patches in the opposite order (better
 for lazy use) and which has additional information about tags that allows
 us to avoid looking at old history.
] 
[correction for send.sh test
Eric Kow <[EMAIL PROTECTED]>**20051218095652
 previously failed on (at least) MacOS X 10.3.9
 
] 
[RemoteApply no longer depends on cd, use --repodir instead.
[EMAIL PROTECTED]
 
 This is a minor change to make darcs no longer use cd
 before applying patches to a remote repository. 
 Now the --repodir option for the apply command is used.
 
 This patch came from a hack to rssh[http://sf.net/projects/rssh]
 to allow using darcs as a restricted command without depending
 on the cd binary.
 http://sf.net/tracker/index.php?func=detail&aid=1351939&group_id=65349&atid=510643
] 
[Support signed push
Esa Ilari Vuokko <[EMAIL PROTECTED]>**20051129082159] 
[Fix typo in multirepo pull.
Juliusz Chroboczek <[EMAIL PROTECTED]>**20051217201918] 
[Fix merge conflicts.
Juliusz Chroboczek <[EMAIL PROTECTED]>**20051217201903] 
[add changelog entry for multirepo pull.
David Roundy <[EMAIL PROTECTED]>**20051215122808] 
[add support for pulling from multiple repositories simultaneously.
David Roundy <[EMAIL PROTECTED]>**20050919125012] 
[Use POSIX-style option for 'head', instead of obsolescent syntax
Marnix Klooster <[EMAIL PROTECTED]>**20051216111731] 
[Clarify wording for changes that can't be unreverted
[EMAIL PROTECTED] 
[Set attachment filename when sending a patch bundle by e-mail.
Zachary P. Landau <[EMAIL PROTECTED]>**20051217195009] 
[save long comment file if a test fails during record
Zachary P. Landau <[EMAIL PROTECTED]>**20051216023948] 
[properly quote paths so that paths with spaces in them are okay
[EMAIL PROTECTED] 
[fix up debug printouts in cygwin-wrapper.bash
[EMAIL PROTECTED] 
[smoother invocation of cygwin-wrapper.bash -- it detects fully-qualified path to itself by leading /
[EMAIL PROTECTED] 
[modernize amend-record.pl to be more portable.
Mark Stosberg <[EMAIL PROTECTED]>**20050402133417
 
 This depends on the new "echo_to_darcs()" function in Test::Darcs
] 
[implementation of --set-scripts-executable on local darcs get
[EMAIL PROTECTED]
 proposed fix for issue38
 
 The --set-scripts-executable flag is normally evaluated when you apply
 patches.  But when you do a local darcs get, no patches are applied.
 So as a solution, we traverse the directory on local darcs get , and set
 any script files to be executable. 
 
 Note: one flaw in this patch is that it duplicates the definition of
 what a script is -- a file that starts with #! -- in PatchApply.lhs and
 Get.lhs.  It might be good to refactor these somehow.
 
] 
[extended set-scripts-executable test
[EMAIL PROTECTED]
 added check for local darcs get (issue 38) as well as initial sanity check
  
] 
[Fix merge conflicts.
Juliusz Chroboczek <[EMAIL PROTECTED]>**20051214223217] 
[Add --subject flag to 'darcs send'
Joeri van Ruth <[EMAIL PROTECTED]>**20051205120301] 
[print out the patch name when a test fails.
Zachary P. Landau <[EMAIL PROTECTED]>**20051205055109] 
[Fix mistyped /dev/null, fixes --sendmail-command in Windows
Esa Ilari Vuokko <[EMAIL PROTECTED]>**20051129160120] 
[Use \ as path separator for GnuPG in Windows -- makes apply --verify work
Esa Ilari Vuokko <[EMAIL PROTECTED]>**20051129164533] 
[make dangers and recommended use of "Amend" clearer in the docs.
Mark Stosberg <[EMAIL PROTECTED]>**20051213140523
 
 I think it's important to be clearer about when it's appropriate to use 'amend',
 so I moved some notes into the short and mid-length help texts.
] 
[update web page to reflect 1.0.5 as latest stable source.
Tommy Pettersson <[EMAIL PROTECTED]>**20051213111137] 
[fix handling of absolute paths containing drive letters
Will <[EMAIL PROTECTED]>**20051208054737
 This fixes issue 47 where paths containing drive letters (i.e. on windows)
 are not treated as absolute paths.
] 
[bump version to 1.0.6pre1
Tommy Pettersson <[EMAIL PROTECTED]>**20051208092839] 
[revert maybe_relink and atomic_create to original C code.
David Roundy <[EMAIL PROTECTED]>**20051208131213] 
[resolve conflicts between stable and unstable.
David Roundy <[EMAIL PROTECTED]>**20051206134818] 
[TAG 1.0.5
Tommy Pettersson <[EMAIL PROTECTED]>**20051207112730] 
[add changelog entry
Tommy Pettersson <[EMAIL PROTECTED]>**20051207112704] 
[bump version to 1.0.5
Tommy Pettersson <[EMAIL PROTECTED]>**20051204161803] 
[TAG 1.0.5rc2
Tommy Pettersson <[EMAIL PROTECTED]>**20051204152416] 
[add changelog entries
Tommy Pettersson <[EMAIL PROTECTED]>**20051204151312] 
[bump version to 1.0.5rc2
Tommy Pettersson <[EMAIL PROTECTED]>**20051204150926] 
[skip tests that fail because of windows or msys
Will <[EMAIL PROTECTED]>**20051204035855] 
[use autoconf to determine which GHC modules to use
Will <[EMAIL PROTECTED]>**20051204022613
 GNUmakefile had the util and text packages hard coded, but the util package
 appears to be missing from the current ghc-6-4-branch.  Instead of hard
 coding packages, use autoconf to include them when necessary.
] 
[use System.Posix.sleep and fix the win32 implementation
Will <[EMAIL PROTECTED]>**20051204002859
 Make Lock.lhs use the sleep function from System.Posix rather than importing
 the C implementation.  Also fix the the win32 implementation to call SleepEx
 rather than sleep from unistd.h which has been deprecated in recent versions
 of mingw.
] 
[Make --help and --list-commands ignore other options
[EMAIL PROTECTED]
 Proposed implementation of issue34 on the wishlist.
 
 If --help is one of the options you provide, then darcs prints
 the help and does nothing else, no matter what order you put
 the options in.  Similar behaviour for --list-commands.
 
] 
[Make send --ouput - to print to stdout
Esa Ilari Vuokko <[EMAIL PROTECTED]>**20051129201708] 
[Support apply --verify for bundles signed by GnuPG in Windows
Esa Ilari Vuokko <[EMAIL PROTECTED]>**20051126223238] 
[TAG 1.0.5rc1
Tommy Pettersson <[EMAIL PROTECTED]>**20051125191739] 
[add some changelog entries
Tommy Pettersson <[EMAIL PROTECTED]>**20051125191633] 
[remove tabs from darcs source file
Tommy Pettersson <[EMAIL PROTECTED]>**20051120200002] 
[Added a test for changes --context patch selection.
Daniel Bünzli <[EMAIL PROTECTED]>**20051120170157] 
[Emacs ediff-merge example and explanation of --external-merge.
Dave Love <[EMAIL PROTECTED]>**20051117154924] 
[Fix patch selection for command changes --context
Daniel Bünzli <[EMAIL PROTECTED]>**20051117145112] 
[fix bug where darcs tries to delete open tempfile on win32
Will <[EMAIL PROTECTED]>**20051117023516] 
[fix bug in amInRepository.
David Roundy <[EMAIL PROTECTED]>**20051117131208
 This is the bug that causes issue9.  I'm a bit uncertain about this
 patch--it looks obvious, but this is pretty subtle code.
] 
[bump version to 1.0.5rc1
Tommy Pettersson <[EMAIL PROTECTED]>**20051117111128] 
[Fixed documentation of DARCS_GET_HTTP with curl.
Daniel Bünzli <[EMAIL PROTECTED]>**20051117062547] 
[Flag superfluous input using Test::Builder
Florian Weimer <[EMAIL PROTECTED]>**20051112160533
 
 This change makes sure that the test case that triggers this error
 condition fails in a clean way (especially if test planning is not used,
 but it should work with plans as well).
] 
[add --dont-edit-description opposite to --edit-description.
David Roundy <[EMAIL PROTECTED]>**20051116115632] 
[English and markup fixes.
Dave Love <[EMAIL PROTECTED]>**20051114224845] 
[update web page to reflect 1.0.4 as latest stable source.
David Roundy <[EMAIL PROTECTED]>**20051113210144] 
[TAG 1.0.4
David Roundy <[EMAIL PROTECTED]>**20051113134431] 
[fix, move default markings of Query Manifest flags right
Tommy Pettersson <[EMAIL PROTECTED]>**20051112185325
 Files are included and dirs are not, by default.
] 
[make determine_release_state.pl work properly for actual releases.
David Roundy <[EMAIL PROTECTED]>**20051112171734] 
[bump version number to 1.0.4.
David Roundy <[EMAIL PROTECTED]>**20051112170053] 
[add note in docs about bug with DARCS_DONT_ESCAPE_ISPRINT with GHC 6.4
Tommy Pettersson <[EMAIL PROTECTED]>**20051112153628] 
[set DARCS_EDITOR in send.sh so darcs won't actually call a real editor.
David Roundy <[EMAIL PROTECTED]>**20051112145118] 
[Add BUGS section.
Dave Love <[EMAIL PROTECTED]>**20051112135212
 The info should also be added to the manual somewhere appropriate.
] 
[Add bug address to help text.
Dave Love <[EMAIL PROTECTED]>**20051112105924] 
[fix bug in darcs_completion when you match the "." character.
David Roundy <[EMAIL PROTECTED]>**20051112140357] 
[add a few more changelog entries.
David Roundy <[EMAIL PROTECTED]>**20051111133638] 
[fix bug in code for external conflict resolution.
David Roundy <[EMAIL PROTECTED]>**20051111132557] 
[spelling fix in docs.
David Roundy <[EMAIL PROTECTED]>**20051111123035] 
[use substrPS for more robust searching for the patch bundle hash.
David Roundy <[EMAIL PROTECTED]>**20051110145918] 
[speed up replace by first checking on each line if there might be a match.
David Roundy <[EMAIL PROTECTED]>**20051110143047
 The idea is that if there is no substring match, there won't be a token
 match, and we can save huge amounts of time.  On my very simple test
 (replacing if with fi in all of darcs' files), the speedup took us from 30
 seconds to 3 seconds to pull.
] 
[implement FastPackedString.substrPS, which searches for a substring.
David Roundy <[EMAIL PROTECTED]>**20051110140311] 
[Avoid putting a wrongly-named directory in dist tarball if the name we wanted already exists in $TMPDIR
Simon McVittie <http://www.pseudorandom.co.uk/>**20051106145821] 
[make pull.pl work on MacOS X using ugly hack.
[EMAIL PROTECTED]
 For some reason ghc on MacOX X gives an Unknown error 0 where it ought to
 give a "permission denied" error.  This change just makes us recognize this
 and turns the test failure into a TODO check.
] 
[add a couple of changelog entries.
David Roundy <[EMAIL PROTECTED]>**20051108132617] 
[make sftp honor the SSH_PORT env variable.
David Roundy <[EMAIL PROTECTED]>**20051108131847] 
[update version number to 1.0.4rc3.
David Roundy <[EMAIL PROTECTED]>**20051108120613] 
[Fix spurious failure of the revert test case
Florian Weimer <[EMAIL PROTECTED]>**20051107195237
 
 "darcs revert -a" does not require confirmation.
] 
[Check for excess input in test cases
Florian Weimer <[EMAIL PROTECTED]>**20051107195045
 
 This change also fixes a latent race condition (by adding a call to
 waitpid): darcs might not have run to completion when echo_to_darcs
 returns.
] 
[During tests, do not exit silently when a write fails
Florian Weimer <[EMAIL PROTECTED]>**20051107194913] 
[fix example in doc to work with version 1.0.3 and above
Tommy Pettersson <[EMAIL PROTECTED]>**20051106232940
 Discovered and fix suggested by Pavel Pisa.
] 
[TAG 1.0.4rc2
David Roundy <[EMAIL PROTECTED]>**20051106121631] 
[rewrite hunk application code to reinstate consistency checking.
David Roundy <[EMAIL PROTECTED]>**20051105190307
 In the optimization, Ian dropped checking that the "old" state of the file
 matches what the patch thinks.  This works fine until a repository becomes
 corrupt, at which point it makes the corruption harder to pinpoint (and
 makes it able to sneak by longer without being seen).
] 
[mark as TODO a merge bug that was uncovered by another bugfix.
David Roundy <[EMAIL PROTECTED]>**20051105184800
 This doesn't look like a pleasant bug, but the fix is a real fix, which I
 want to get into the stable release.
] 
[add test for newlineless patches.
David Roundy <[EMAIL PROTECTED]>**20051105171242] 
[fix bug in record --ask-deps
David Roundy <[EMAIL PROTECTED]>**20051103014858
 This fixes the "pull_firsts_middles called badly" bug.  It's a bit of an
 ugly hack to work around the Ian's ugly hack that makes:
 $ echo a | darcs record -m foo
 as memory-efficient (and time-efficient, too) as
 $ darcs record --all -m foo
 I do have some ideas how we might be able to avoid some of this
 ugliness...
] 
[add changelog entry for RT#476 bugfix.
David Roundy <[EMAIL PROTECTED]>**20051102145144] 
[Implement caching of git sequences in GitRepo.
Juliusz Chroboczek <[EMAIL PROTECTED]>**20051031132139] 
[Reorganized command overview in manual.
[EMAIL PROTECTED] 
[Remove obsolete comment.
Juliusz Chroboczek <[EMAIL PROTECTED]>**20051027183940] 
[Use gitCommitDatePS instead of gitCommitDate when choosing Git ancestors.
Juliusz Chroboczek <[EMAIL PROTECTED]>**20051027182421] 
[Use PackedStrings when parsing Git authors.
Juliusz Chroboczek <[EMAIL PROTECTED]>**20051027182400] 
[Use the new breakFirstPairPS instead of break2PS.
Juliusz Chroboczek <[EMAIL PROTECTED]>**20051027180138] 
[Change breakFirstPairPS to return slightly larger strings.
Juliusz Chroboczek <[EMAIL PROTECTED]>**20051027180107] 
[Use packed strings when parsing Git commits.
Juliusz Chroboczek <[EMAIL PROTECTED]>**20051026005323] 
[Implement break2PS.
Juliusz Chroboczek <[EMAIL PROTECTED]>**20051026005236] 
[Choose better ancestors for Git merges.
Juliusz Chroboczek <[EMAIL PROTECTED]>**20051025215522
 The common ancestor will be chosen optimally assuming that the Git
 ancestry graph is a semilattice and commit dates are monotonic.  If
 the Git ancestry graph is unstructured, the youngest ancestor will
 be chosen.
 
 If Git dates are not ordered, all bets are off.
 
 The algorithm is at least O(h*w^2), where h is the height of the
 ancestry graph and w is the number of ancestors, but profiling shows
 that this doesn't matter much -- commuting patches is what takes all
 the time.
] 
[Implement gitCommitDate.
Juliusz Chroboczek <[EMAIL PROTECTED]>**20051025213832] 
[Clarify docs for building darcs-git.
Juliusz Chroboczek <[EMAIL PROTECTED]>**20051025231344] 
[give better error messages when cloning trees
David Roundy <[EMAIL PROTECTED]>**20051020124139
 Also make cloneSubTree ignore nonexistent objects.  I belive this solves
 the issue with bug #562.
] 
[fix html package inclusion in user manual
Andres Loeh <[EMAIL PROTECTED]>**20051013200817] 
[improve command-line help for put.
David Roundy <[EMAIL PROTECTED]>**20051014115911] 
[add warning to docs about inefficiency of put.
David Roundy <[EMAIL PROTECTED]>**20051013124058] 
[add the new put command to list in doc
Tommy Pettersson <[EMAIL PROTECTED]>**20051013103518] 
[update documentation on matching ranges
Tommy Pettersson <[EMAIL PROTECTED]>**20051012163804
 The matching patch at either end of a range is included in the output.
] 
[document DARCS_DONT_ESCAPE_TRAILING_CR
Tommy Pettersson <[EMAIL PROTECTED]>**20051012140458] 
[fix typo
Tommy Pettersson <[EMAIL PROTECTED]>**20051010190733] 
[remove *.ko files from the default boring regexps.
David Roundy <[EMAIL PROTECTED]>**20051011131624
 They could be Korean translations rather than kernel modules.
] 
[avoid duplicated code for constructing patch bundles in Push.
David Roundy <[EMAIL PROTECTED]>**20051011123752] 
[bump version to 1.0.4rc2
Tommy Pettersson <[EMAIL PROTECTED]>**20051010164926] 
[add changelog entry for #544.
David Roundy <[EMAIL PROTECTED]>**20051009115143] 
[fix bug #544, caused by outputing changes --context with escaping and coloring.
David Roundy <[EMAIL PROTECTED]>**20051009114941] 
[add test for bug #544
David Roundy <[EMAIL PROTECTED]>**20051009114914] 
[TAG 1.0.4rc1
Tommy Pettersson <[EMAIL PROTECTED]>**20051008101653] 
[make gzReadFileLazily close files sooner.
David Roundy <[EMAIL PROTECTED]>**20050827211253] 
[Merge changes
Ian Lynagh <[EMAIL PROTECTED]>**20051008225210] 
[specify default --author in whatsnew.pl.
David Roundy <[EMAIL PROTECTED]>**20051007235714] 
[fix bug in whatsnew on files without trailing newlines.
David Roundy <[EMAIL PROTECTED]>**20051004124355] 
[add test for whatsnew -s on file without newline.
David Roundy <[EMAIL PROTECTED]>**20050905123225] 
[remove old footnote that caused doc-building trouble.
David Roundy <[EMAIL PROTECTED]>**20051008002612] 
[use prefix and userchunkPS in coolContextHunk
Tommy Pettersson <[EMAIL PROTECTED]>**20050923093032
 This makes escaping of trailing spaces work in unified output.
] 
[add changelog entry for bug #512.
David Roundy <[EMAIL PROTECTED]>**20051007123717] 
[make --summary have effect in interactive commands
David Roundy <[EMAIL PROTECTED]>**20051007123507] 
[make --dry-run --summary indent the summaries like changes does.
David Roundy <[EMAIL PROTECTED]>**20051007123427] 
[Fix typos in description of unpull.
Juliusz Chroboczek <[EMAIL PROTECTED]>**20051006204813
 Thanks to frithjof.
] 
[avoid excess printing in set_scripts_executable.pl.
David Roundy <[EMAIL PROTECTED]>**20051007112545] 
[fix documentation typos
Andres Loeh <[EMAIL PROTECTED]>**20050918175732] 
[description environment for explanation of --summary flags
Andres Loeh <[EMAIL PROTECTED]>**20050918175612] 
[remove/change/fix some quotation marks
Andres Loeh <[EMAIL PROTECTED]>**20050918171105] 
[remove occurrences of \bf, \tt, and \em
Andres Loeh <[EMAIL PROTECTED]>**20050918170214] 
[add executable bit support to Readable/WriteableDirectory.
David Roundy <[EMAIL PROTECTED]>**20051003123240] 
[fix bug in set_scripts_executable test, and related bug in apply.
David Roundy <[EMAIL PROTECTED]>**20051006111849] 
[clean up tests/set_scripts_executable.pl.
David Roundy <[EMAIL PROTECTED]>**20051004131951] 
[make --set-scripts-executable work once again.
David Roundy <[EMAIL PROTECTED]>**20051004131756] 
[remove occurances of "'" that messed up my emacs coloring...
David Roundy <[EMAIL PROTECTED]>**20050919122443] 
[add two changelog entries.
David Roundy <[EMAIL PROTECTED]>**20051004132328] 
[update copyright dates.
David Roundy <[EMAIL PROTECTED]>**20051004131936] 
[only use ascii chars in quoted escapes of non-printable chars
Tommy Pettersson <[EMAIL PROTECTED]>**20050920163959
 Haskell interprets Char as unicode regardless of the systems locale,
 so isPrint can't be used the way it was used to find suitable escape
 quotings.  Ascii fortunately is unicode, so the simple fix is to restrict
 escape quotings to only use (printable) ascii chars.
] 
[Installation doc readability fixes
Thomas Zander <[EMAIL PROTECTED]>**20050924163649] 
[simplify docs-- why "CVS" is in the boring file is self-evident.
Mark Stosberg <[EMAIL PROTECTED]>**20050927131847] 
[add two new changelog entries.
David Roundy <[EMAIL PROTECTED]>**20050910110115] 
[fix bug in resolve.pl test.
David Roundy <[EMAIL PROTECTED]>**20050910103833] 
[give better output on sftp errors.
David Roundy <[EMAIL PROTECTED]>**20050908125423] 
[make darcs not generate null binary patches when diffing.
David Roundy <[EMAIL PROTECTED]>**20050907125129] 
[make darcs able to eliminate null binary and hunk patches when coalescing.
David Roundy <[EMAIL PROTECTED]>**20050907125104] 
[add test that adding and removing binary files leaves no change.
David Roundy <[EMAIL PROTECTED]>**20050907122509] 
[fix some typos in comments
Conrad Parker <[EMAIL PROTECTED]>**20050904225715] 
[Make print_dry_run_message_and_exit print summaries if All and Summary.
David Roundy <[EMAIL PROTECTED]>**20050904125434
 This is a somewhat hokey way to make --all --summary print summary
 messages.
] 
[add changelog entry for configure script checking on darcs being present.
David Roundy <[EMAIL PROTECTED]>**20050905113258] 
[fix bug where we tried to run darcs when darcs wasn't present.
David Roundy <[EMAIL PROTECTED]>**20050905112935] 
[revert accidental directory name change in Test.
David Roundy <[EMAIL PROTECTED]>**20050904123424] 
[add changelog entry for recent pristine bugfix.
David Roundy <[EMAIL PROTECTED]>**20050903134039] 
[-add test script for --set-scripts-executable
Mark Stosberg <[EMAIL PROTECTED]>**20050901015046
 
 It's currently failing because darcs is currently broken in this regard. I commented
 out a "TODO" test in case you want to make to this a TODO test until
 someone gets to it.
] 
[clean up docs on flags directly to darcs (not to a darcs command).
David Roundy <[EMAIL PROTECTED]>**20050903124050] 
[bump version to 1.0.4rc1.
David Roundy <[EMAIL PROTECTED]>**20050903114002] 
[update the web page to direct new users first to the precompiled binaries rather than first to the source
[EMAIL PROTECTED] 
[add test script that displays --no-pristine test-related bug.
David Roundy <[EMAIL PROTECTED]>**20050903132906] 
[fix bug triggered by --no-pristine-tree and running test.
David Roundy <[EMAIL PROTECTED]>**20050903132055
 The trouble was that the NoPristine version of createPristineDirectoryTree
 would fail if the directory already exists, which isn't the intended
 behavior.  I also took this opportunity to remove the "stubbornly" function
 and replace some stubborn directory creation with
 createDirectoryIfMissing.
] 
[don't create test directory if we don't want to actually run test.
David Roundy <[EMAIL PROTECTED]>**20050903130722] 
[Change an rm_rf to a cleanup in tests/disable.pl
Ian Lynagh <[EMAIL PROTECTED]>**20050902024711] 
[TAG 1.0.4pre4
David Roundy <[EMAIL PROTECTED]>**20050901110418] 
[add changelog entry for makefile fix.
David Roundy <[EMAIL PROTECTED]>**20050901110353] 
[bump version to 1.0.4pre4.
David Roundy <[EMAIL PROTECTED]>**20050901110210] 
[fix DESTDIR syntax errors in makefile
Andres Loeh <[EMAIL PROTECTED]>**20050831192410] 
[fix "No root path(s) specified at ..." testsuite problem.
David Roundy <[EMAIL PROTECTED]>**20050830121603] 
[add test that triggers "too many open files" bug.
David Roundy <[EMAIL PROTECTED]>**20050827192215
 We just need to pull over 1024 patches at once to trigger this bug on my
 linux system.
] 
[TAG 1.0.4pre3
David Roundy <[EMAIL PROTECTED]>**20050831115448] 
[add two changelog entries.
David Roundy <[EMAIL PROTECTED]>**20050831113335] 
[only create directories on install if they don't exist (bug #494)
David Roundy <[EMAIL PROTECTED]>**20050831113142] 
[fix bug in whatsnew -l -l (rt#501).
David Roundy <[EMAIL PROTECTED]>**20050831110552] 
[fix typo in docs.
David Roundy <[EMAIL PROTECTED]>**20050831002520] 
[fix --posthook code to pass tests.
David Roundy <[EMAIL PROTECTED]>**20050830132225] 
[add test for --disable.
David Roundy <[EMAIL PROTECTED]>**20050830132122] 
[add changelog entry for --posthook.
David Roundy <[EMAIL PROTECTED]>**20050830132110] 
[add skeleton posthook test.
David Roundy <[EMAIL PROTECTED]>**20050827123744] 
[posthook documentation
Jason Dagit <[EMAIL PROTECTED]>**20050825045706] 
[changed from --posthook-command to posthook
Jason Dagit <[EMAIL PROTECTED]>**20050825043414] 
[now the posthook options appear for each command
Jason Dagit <[EMAIL PROTECTED]>**20050825043305] 
[posthook for apply
Jason Dagit <[EMAIL PROTECTED]>**20050803070343
 With this patch it is now possible to specify a command to run after every
 successful apply.
] 
[added run_posthook for actually running posthooks
Jason Dagit <[EMAIL PROTECTED]>**20050803070156
 This adds the function run_posthook which should be used to run posthooks.
 The code was added to Test.lhs, but there may be a better place for this code.
] 
[added posthook command line switches
Jason Dagit <[EMAIL PROTECTED]>**20050803065956
 Added generic posthook command line switches.  This patch does not add any
 posthooks to any command.
] 
[Rewrite gcau, add explanatory comment from David and some TODO notes
Ian Lynagh <[EMAIL PROTECTED]>**20050830020943] 
[update building darcs section of manual.
David Roundy <[EMAIL PROTECTED]>**20050829120152] 
[add bench directory with a single script in it.
David Roundy <[EMAIL PROTECTED]>**20050828114118
 See bench/README for discussion of the idea behind this.
] 
[New implementation of comparePS, based on memcmp. 1/5 space usage, 96% faster
[EMAIL PROTECTED] 
[Use substrPS-less versions of initPS and tailPS
[EMAIL PROTECTED] 
[remove hideous malloc hack.
David Roundy <[EMAIL PROTECTED]>**20050818161411] 
[change my AUTHORS email to [EMAIL PROTECTED]
David Roundy <[EMAIL PROTECTED]>**20050808124703] 
[fix mkstemp implementation for win32
Peter Strand <[EMAIL PROTECTED]>**20050810211303] 
[Implement parts of System.Posix.(IO|Files) for win32
[EMAIL PROTECTED] 
[implement RawMode with library functions instead of ffi
[EMAIL PROTECTED] 
[call hsc2hs without output filename argument
[EMAIL PROTECTED] 
[Rename compat.c to c_compat.c to avoid object filename conflict with Compat.hs
[EMAIL PROTECTED] 
[Move atomic_create/sloppy_atomic_create to Compat
Ian Lynagh <[EMAIL PROTECTED]>**20050730141703] 
[Split the raw mode stuff out into its own .hsc file. Windows needs some TLC
Ian Lynagh <[EMAIL PROTECTED]>**20050730134030] 
[Move maybe_relink out of compat.c
Ian Lynagh <[EMAIL PROTECTED]>**20050730131205] 
[Remove is_symlink
Ian Lynagh <[EMAIL PROTECTED]>**20050730122255] 
[Move mkstemp to Compat.hs
Ian Lynagh <[EMAIL PROTECTED]>**20050730020918] 
[Remove unused function
Ian Lynagh <[EMAIL PROTECTED]>**20050730010118] 
[Start Compat.hs, and move stdout_is_a_pipe from compat.c
Ian Lynagh <[EMAIL PROTECTED]>**20050730004829] 
[fix for bug Ian found in apply.
David Roundy <[EMAIL PROTECTED]>**20050811162558
 This is the bug manifested in the cabal repository.
] 
[fix compilation errors with ghc-6.2.2 on win32
Peter Strand <[EMAIL PROTECTED]>**20050809192759] 
[Retain both Git's author and committer.
Juliusz Chroboczek <[EMAIL PROTECTED]>**20050810000820] 
[Move slurping into syncPristine.
Juliusz Chroboczek <[EMAIL PROTECTED]>**20050809232101
 Avoids creating a useless pristine tree when there is none.  Thanks to
 Ian for pointing this out.
] 
[Split --relink into --relink and --relink-pristine.
Juliusz Chroboczek <[EMAIL PROTECTED]>**20050809230951
 Relinking the pristine tree breaks handling of timestamps, which causes
 Darcs to compare file contents.  It should not be used unless you know
 what you are doing.
] 
[make repair work on partial repositories.
David Roundy <[EMAIL PROTECTED]>**20050805113001] 
[Cleanup --verbose handling in repair command
Matt Lavin <[EMAIL PROTECTED]>**20050805020630] 
[clean up Printer.wrap_text.
David Roundy <[EMAIL PROTECTED]>**20050808114844] 
[add several changelog entries.
David Roundy <[EMAIL PROTECTED]>**20050808114800] 
[improve EOD message a tad.
David Roundy <[EMAIL PROTECTED]>**20050807112644
 This change also introduces a "wrapped_text" function in Printer, so we
 won't have to worry so often about manually wrapping lines.
] 
[changed ***DARCS*** to ***END OF DESCRIPTION***
Jason Dagit <[EMAIL PROTECTED]>**20050729032543] 
[remove unused opts argument from apply_patches and apply_patches_with_feedback
Matt Lavin <[EMAIL PROTECTED]>**20050807031038] 
[Use apply_patch_with_feedback from check and repair commands
Matt Lavin <[EMAIL PROTECTED]>**20050805020830] 
[add code to read patch bundles with added CRs.
David Roundy <[EMAIL PROTECTED]>**20050806222631
 I think this'll address bug #291.
] 
[accept command-line flags in any order.
David Roundy <[EMAIL PROTECTED]>**20050806211828
 In particular, we no longer require that --flags precede filename and
 repository arguments.
] 
[show patch numbers instead of dots on get
Matt Lavin <[EMAIL PROTECTED]>**20050804013649] 
[add obliterate command as alias for unpull.
David Roundy <[EMAIL PROTECTED]>**20050804104929] 
[Do not ask confirmation for revert -a
[EMAIL PROTECTED]
 Giving -a as a parameter means the user expects all changes to be reverted.
 Just like for unrevert and record go ahead with it do not ask for confirmation.
] 
[clarify help text for 'd' in SelectPatches.
David Roundy <[EMAIL PROTECTED]>**20050806231117] 
[Add --with-static-libs configure flag for linking static versions of libraries.
[EMAIL PROTECTED] 
[add changelog entry for bug #477.
David Roundy <[EMAIL PROTECTED]>**20050806212148] 
[changelog entry for bug #189.
David Roundy <[EMAIL PROTECTED]>**20050731132624] 
[add description of how to add changelog entries to ChangeLog.README.
David Roundy <[EMAIL PROTECTED]>**20050806225901] 
[Explain the missing ChangeLog
Mark Stosberg <[EMAIL PROTECTED]>**20050526135421
 
 It should be easy for casual users and contributors to view and update the
 ChangeLog.
 
 Providing a README file in the place where people are most likely to look
 provides a very useful clue.
 
 However, it's still not clear to me exactly how the system works, so I have
 left a stub to complete that documentation.
 
     Mark
 
] 
[fix obsolete error explanation in get_extra bug.
David Roundy <[EMAIL PROTECTED]>**20050804130610] 
[simplify fix for bug 463; reuse /// from FilePathUtils
Matt Lavin <[EMAIL PROTECTED]>**20050804021130] 
[Make curl exit with error on failed downloads
[EMAIL PROTECTED] 
[Bump up AC_PREREQ version to 2.59.
[EMAIL PROTECTED] 
[fix for bug 463 (with new test)
Matt Lavin <[EMAIL PROTECTED]>**20050802002116] 
[bump version number, since I just made a release.
David Roundy <[EMAIL PROTECTED]>**20050731190756] 
[Use simpler curl_version() function to get version string.
Kannan Goundan <[EMAIL PROTECTED]>**20050322221027] 
[fix documentation on --reorder-patches.
David Roundy <[EMAIL PROTECTED]>**20050731185406] 
[add changelog entry for bug #224.
David Roundy <[EMAIL PROTECTED]>**20050731133942] 
[fix bug when editing long comment leaves empty file.
David Roundy <[EMAIL PROTECTED]>**20050731133612] 
[TAG 1.0.4pre2
David Roundy <[EMAIL PROTECTED]>**20050731121029] 
Patch bundle hash:
e02a9eb56e3eb6fbc401c3c0a578c6d41aa7f7f2
_______________________________________________
darcs-devel mailing list
[email protected]
http://www.abridgegame.org/cgi-bin/mailman/listinfo/darcs-devel

Reply via email to