Thu Oct 18 14:57:14 BST 2007  Ganesh Sittampalam <[EMAIL PROTECTED]>
  * configure hack to deal with openFd -> fdToHandle' renaming in GHC 6.8

Thu Oct 18 15:21:25 BST 2007  Ganesh Sittampalam <[EMAIL PROTECTED]>
  * GHC 6.8 needs containers package

Mon Oct 22 11:29:02 BST 2007  Ganesh Sittampalam <[EMAIL PROTECTED]>
  * make_changelog requires Text.PrettyPrint which is in package pretty in GHC 
6.8
New patches:

[configure hack to deal with openFd -> fdToHandle' renaming in GHC 6.8
Ganesh Sittampalam <[EMAIL PROTECTED]>**20071018135714] {
hunk ./aclocal.m4 450
+       AC_MSG_RESULT([NOT 'new' API])
+       AC_MSG_CHECKING([GHC.Handle.fdToHandle' API])
+       TRY_RUN_GHC([
+import GHC.Handle ( fdToHandle' )
+import IO ( IOMode(..) )
+
+main = fdToHandle' 1 Nothing False "stdout" WriteMode True
+       ],
+       AC_MSG_RESULT([okay])
+       IMPORT_WORKAROUND([import qualified GHC.Handle ( fdToHandle' )
+import System.IO ( Handle, IOMode )
+import System.Posix.Internals ( FDType )
+])
+       CODE_WORKAROUND([[
+{-
+Work around renaming of GHC.Handle.openFd and change in its API.
+-}
+openFd :: Int -> Maybe FDType -> FilePath -> IOMode -> Bool -> Bool -> IO Handle
+openFd fd x y z a b = GHC.Handle.fdToHandle' (fromIntegral fd) x b y z a
+        ]]),
hunk ./aclocal.m4 474
-])
+)])
+
}

[GHC 6.8 needs containers package
Ganesh Sittampalam <[EMAIL PROTECTED]>**20071018142125] {
hunk ./configure.ac 137
+
+dnl Check if we need package containers
+
+GHC_CHECK_MODULE(Data.Map, containers, empty,,
+                 AC_MSG_ERROR(Cannot find Data.Map))
}

[make_changelog requires Text.PrettyPrint which is in package pretty in GHC 6.8
Ganesh Sittampalam <[EMAIL PROTECTED]>**20071022102902] {
hunk ./configure.ac 142
+
+dnl Check if we need package pretty (just for the utilities)
+
+GHC_CHECK_MODULE(Text.PrettyPrint, pretty, empty,,
+                 AC_MSG_ERROR(Cannot find Text.PrettyPrint))
+
}

Context:

[fix making of AUTHORS and ChangeLog.
David Roundy <[EMAIL PROTECTED]>**20071004151915] 
[add svg logo.
David Roundy <[EMAIL PROTECTED]>**20071004203025] 
[mercurial files are boring.
David Roundy <[EMAIL PROTECTED]>**20071018143931] 
[run test suite in parallel
David Roundy <[EMAIL PROTECTED]>**20071003190525] 
[fix buggy exit 1 that Eric pointed out.
David Roundy <[EMAIL PROTECTED]>**20071016153710] 
[fix nonportable cp -a.
David Roundy <[EMAIL PROTECTED]>**20071016153305] 
[allow tests to be run in parallel.
David Roundy <[EMAIL PROTECTED]>**20071003175540] 
[give prettier errors when unit fails.
David Roundy <[EMAIL PROTECTED]>**20071002202041] 
[add support for a few more conflicting possibilities.
David Roundy <[EMAIL PROTECTED]>**20071002200245] 
[eliminate type ConflictedSet
David Roundy <[EMAIL PROTECTED]>**20071002173039] 
[define a color traceDoc (for debugging).
David Roundy <[EMAIL PROTECTED]>**20071002170102] 
[define a color version of errorDoc (for debugging).
David Roundy <[EMAIL PROTECTED]>**20071002162134] 
[make one more conflictor merge work.
David Roundy <[EMAIL PROTECTED]>**20071002155252
 Alas, the conflictor commute is still known to be
 buggy, and I know what I need to do next (but one
 thing at a time).
] 
[redefine Conflictor to hold conflicted patches in a more natural order.
David Roundy <[EMAIL PROTECTED]>**20070928201406] 
[implement a bit more conflictor commuting.
David Roundy <[EMAIL PROTECTED]>**20070926210511] 
[test format-2.
David Roundy <[EMAIL PROTECTED]>**20070828212626] 
[various refactorings and work on conflictors.
David Roundy <[EMAIL PROTECTED]>**20070926184158] 
[define "Shy" patch type, which preserves dependencies on commute.
David Roundy <[EMAIL PROTECTED]>**20070921145751] 
[fix detection of conflicts between conflictors.
David Roundy <[EMAIL PROTECTED]>**20070920200748] 
[make a few more test cases work
David Roundy <[EMAIL PROTECTED]>**20070920191534] 
[add another unit test.
David Roundy <[EMAIL PROTECTED]>**20070920163553] 
[Second conflictor code, passes a few more test cases.
David Roundy <[EMAIL PROTECTED]>**20070920155639] 
[Add first cut at conflictors.
David Roundy <[EMAIL PROTECTED]>**20070920122742] 
[[issue537] Clarify error message for --last.
Eric Kow <[EMAIL PROTECTED]>**20070918183951] 
[Make PatchInfoAndPatch an abstract type.
David Roundy <[EMAIL PROTECTED]>**20070917204801] 
[switch over to FL for SelectPatches.
David Roundy <[EMAIL PROTECTED]>**20070917181327] 
[define and use Prim patch type
David Roundy <[EMAIL PROTECTED]>**20070914151119] 
[fix revert_interactive.sh to work with latest coalesce.
David Roundy <[EMAIL PROTECTED]>**20070808221145] 
[coalesce just-created files with replace patches.
David Roundy <[EMAIL PROTECTED]>**20070808004920
 This change doesn't fix the bug I've been working on, but
 it is an improvement.
] 
[Fix silly inefficiency in getCurrentDirectorySansDarcs.
Eric Kow <[EMAIL PROTECTED]>**20070814210355] 
[[issue348] Never create tmpdir in _darcs.
Eric Kow <[EMAIL PROTECTED]>**20070814204505
 Truncate the _darcs part of the path.
] 
[move Conflicted into separate patch type.
David Roundy <[EMAIL PROTECTED]>**20070911223458] 
[remove Cancel/Cancellation/Marked patch types.
David Roundy <[EMAIL PROTECTED]>**20070911145744] 
[make SelectPatches be more type-specific.
David Roundy <[EMAIL PROTECTED]>**20070911142629] 
[make Named patches a distinct type.
David Roundy <[EMAIL PROTECTED]>**20070910203715] 
[move showContextPatch into ShowPatch class.
David Roundy <[EMAIL PROTECTED]>**20070907171055] 
[clean up Depends a bit more (part 2 of 2 -- makes it more efficient).
David Roundy <[EMAIL PROTECTED]>**20070907152924] 
[clean up Depends a bit more (part 1 of 2).
David Roundy <[EMAIL PROTECTED]>**20070907152713] 
[simplify code using FL instance of Commute.
David Roundy <[EMAIL PROTECTED]>**20070907152011] 
[fix accidentally-recorded change in makefile.
David Roundy <[EMAIL PROTECTED]>**20070907151951] 
[clean up ambiguous [Patch] in Depends.
David Roundy <[EMAIL PROTECTED]>**20070907150315] 
[make PatchSet a RL RL.
David Roundy <[EMAIL PROTECTED]>**20070907141032] 
[make patchset_complement slightly more readable.
David Roundy <[EMAIL PROTECTED]>**20070906144536] 
[define type synonymn PatchInfoAndPatch
David Roundy <[EMAIL PROTECTED]>**20070906135654] 
[use showPatch instance of FL Patch.
David Roundy <[EMAIL PROTECTED]>**20070904172346] 
[define actual merge algorithm (and retype remerge)
David Roundy <[EMAIL PROTECTED]>**20070829182119] 
[Make HopefullyPrivate and Cancellation support gadts
David Roundy <[EMAIL PROTECTED]>**20070829175524] 
[move merging into Commute class
David Roundy <[EMAIL PROTECTED]>**20070905173456] 
[make merger code use RL/FL.
David Roundy <[EMAIL PROTECTED]>**20070905155808] 
[Define class for apply.
David Roundy <[EMAIL PROTECTED]>**20070904221053] 
[Move ReadPatch stuff into yet another class.
David Roundy <[EMAIL PROTECTED]>**20070904210525] 
[Move patch manipulations into classes.
David Roundy <[EMAIL PROTECTED]>**20070904163519] 
[Simplify seekRepo function.
Eric Kow <[EMAIL PROTECTED]>**20070815223735] 
[comment out test that isn't valid in unit
David Roundy <[EMAIL PROTECTED]>**20070827183109] 
[more work on remerge.
David Roundy <[EMAIL PROTECTED]>**20070827181712] 
[define remove_subsequenceFL.
David Roundy <[EMAIL PROTECTED]>**20070827164635] 
[fix bug in unit test from before it accepted an FL
David Roundy <[EMAIL PROTECTED]>**20070824213818] 
[reenamble the remerg3 test (which now passes)
David Roundy <[EMAIL PROTECTED]>**20070824213742] 
[don't generate mergers in Arbitrary
David Roundy <[EMAIL PROTECTED]>**20070824205211] 
[enable testing of Merge using GADTS, and fix related bugs.
David Roundy <[EMAIL PROTECTED]>**20070824202611] 
[fix commutation bug on conflicted patches.
David Roundy <[EMAIL PROTECTED]>**20070824183427
 Note: this breaks an existing test by revealing
 a bug in the (incomplete) remerge function.
] 
[Fix incorrect comment in test.
Eric Kow <[EMAIL PROTECTED]>**20070819154544] 
[Make revert short help less cryptic.
Eric Kow <[EMAIL PROTECTED]>**20070820051613] 
[Make some options advanced (e.g. --umask, --ignore-times).
Eric Kow <[EMAIL PROTECTED]>**20070820050706] 
[Distinguish between basic options and advanced options.
Eric Kow <[EMAIL PROTECTED]>**20070820044234] 
[[issue520] Make --checkpoint short help more explicit.
Eric Kow <[EMAIL PROTECTED]>**20070820052238] 
[Refactor Darcs.Arguments.
Eric Kow <[EMAIL PROTECTED]>**20070813151602] 
[Refactor merging functionality into Repository.
David Roundy <[EMAIL PROTECTED]>**20070829170012] 
[add infrastructure for creation for format-2 repos.
David Roundy <[EMAIL PROTECTED]>**20070828171913
 This patch also adds infrastructure for disabling pulling
 from old-format repos to new-format repos.  But it doesn't
 employ this infrastructure consistently, just yet.
] 
[add format infrastructure for darcs-2 repo format.
David Roundy <[EMAIL PROTECTED]>**20070828160725] 
[generalize new unit testing to sequences of patches.
David Roundy <[EMAIL PROTECTED]>**20070824161252] 
[add some more tests, and improve remerge.
David Roundy <[EMAIL PROTECTED]>**20070824153931] 
[clean up unconflict_some_to_end
David Roundy <[EMAIL PROTECTED]>**20070823201228] 
[add not-test-passing test of remerge
David Roundy <[EMAIL PROTECTED]>**20070823195809] 
[introduce order-safe compare
David Roundy <[EMAIL PROTECTED]>**20070823193526] 
[add eq_patches support for Conflicted, etc.
David Roundy <[EMAIL PROTECTED]>**20070823190657] 
[add some a new unit test module (starting out small).
David Roundy <[EMAIL PROTECTED]>**20070823184510] 
[Fix conflict with merging to unstable
Jason Dagit <[EMAIL PROTECTED]>**20070822132147] 
[Partial remerge
Jason Dagit <[EMAIL PROTECTED]>**20070822125555] 
[simplify invertFL.
David Roundy <[EMAIL PROTECTED]>**20070824155802] 
[always run the unit test
David Roundy <[EMAIL PROTECTED]>**20070824165747] 
[whitespace cleanup.
David Roundy <[EMAIL PROTECTED]>**20070823184234] 
[make nodeps test safer
Tommy Pettersson <[EMAIL PROTECTED]>**20070822122952
 Obliterate --all might be a very bad thing if the test fails in some
 unpredicted way and gets the wrong repo. The new plan is to supply three
 Y:s (the max number of patches that match the regexp) and then abort with Q
 if we're now finished.
] 
[simplify documentation on unrecord range options
Tommy Pettersson <[EMAIL PROTECTED]>**20070822122853] 
[document --no-deps option
Tommy Pettersson <[EMAIL PROTECTED]>**20070819230946] 
[add test for --no-deps
Tommy Pettersson <[EMAIL PROTECTED]>**20070819203442] 
[Minor comment fix.
Eric Kow <[EMAIL PROTECTED]>**20070815094109] 
[Always optimizeInventory in 'darcs tag'.
Eric Kow <[EMAIL PROTECTED]>**20070814204709] 
[Fix bug in tag --checkpoint.
Eric Kow <[EMAIL PROTECTED]>**20070813195204
 It was creating the checkpoint, but not updating the inventory.
] 
[[issue379] Do not show patch contents after help in interactive mode.
Eric Kow <[EMAIL PROTECTED]>**20070813174304] 
[Move ColourPrinter module to Darcs.ColourPrinter.
Eric Kow <[EMAIL PROTECTED]>**20070813172941
 It appears to be darcs-specific after all.
] 
[Really rename --disable-ssh-cm to --no-ssh-cm.
Eric Kow <[EMAIL PROTECTED]>**20070813134803
 It might have gotten lost in a conflict fix.
] 
[Re-enable 'h' as a help key in interactive mode alongside '?'
Eric Kow <[EMAIL PROTECTED]>**20070813125928] 
[[issue125] Tell user that when we skip patches in interactive mode.
Eric Kow <[EMAIL PROTECTED]>**20070810220230] 
[[issue164, issue228] Accept 'p' and 'x' in darcs record.
Eric Kow <[EMAIL PROTECTED]>**20070810220148
 
 Affects any command with interactive primitive patch selection.
] 
[[issue105] Accept interactive 'x' command in darcs rollback.
Eric Kow <[EMAIL PROTECTED]>**20070810220004
 
 Affects any command with interactive named patch selection (e.g. amend).
] 
[Refactor interactive patch selection.
Eric Kow <[EMAIL PROTECTED]>**20070810215902] 
[add some changelog entries
Tommy Pettersson <[EMAIL PROTECTED]>**20070819191252] 
[Move conditional #include from Darcs.External to makefile.
Eric Kow <[EMAIL PROTECTED]>**20070807203037
   
 The GHC manual says that this is *not* the preferred option, but for some
 reason, the include pragmas seem to get ignored.  Perhaps it is because the
 requirement that the pragmas be on the top of the file conflict with the #ifdef
 statements.
 
 In any case, this patch gets rid of the warning on MacOS X:
   warning: implicit declaration of function ‘tgetnum’
] 
[Pass CFLAGS to the assembler
Lennart Kolmodin <[EMAIL PROTECTED]>**20070808181309
 The CFLAGS must be passed to the assembler or the build will break on some
 arches, like the -mcpu is essential on sparc.
] 
[comment out unravel checks.
David Roundy <[EMAIL PROTECTED]>**20070814000309] 
[compile unit when running check.
David Roundy <[EMAIL PROTECTED]>**20070813203540] 
[fix compile errors in unit.lhs.
David Roundy <[EMAIL PROTECTED]>**20070813203525] 
[fix Patch.Test to compile with latest code.
David Roundy <[EMAIL PROTECTED]>**20070813174442] 
[Simplify issue494 test (it's not about capitalisation).
Eric Kow <[EMAIL PROTECTED]>**20070812135319] 
[Add a test for issue494.
Eric Kow <[EMAIL PROTECTED]>**20070811211134] 
[fix bug that revealed itself in optimize --reorder on unstable repo.
David Roundy <[EMAIL PROTECTED]>**20070808005251
 I'm sure this fix doesn't make things worse, but am not convinced that it
 is a totally correct fix.  "Sifting for pending" is a subtle business,
 and in many ways this patch just works around this complexity.  On the other
 hand, I can't see another way to deal with this.  :(
] 
[fix commutation of addition and move patches.
David Roundy <[EMAIL PROTECTED]>**20070808005021
 This is potentially dangerous, but something we'll have to
 do in the long run (the new conflicts stuff assumes a property
 this patch restores).  We used to allow move patches to commute
 with add patches in one direction, so as to reduce the number
 of conflicts.  This violated the rule that if A commutes with B,
 then it will also commute with (invert B).
] 
[function to determine active/inactive patches.
David Roundy <[EMAIL PROTECTED]>**20070803000716] 
[optimize optimize --reorder.
David Roundy <[EMAIL PROTECTED]>**20070808173039] 
[eliminate reorder_coalesce and rename sort_coalesce_composite.
David Roundy <[EMAIL PROTECTED]>**20070808201609] 
[refactor coalesceHunk.
David Roundy <[EMAIL PROTECTED]>**20070808204332] 
[fix docs to match commute_nameconflict changes.
David Roundy <[EMAIL PROTECTED]>**20070808193257] 
[remove commute_nameconflict (rarely invoked and ugly)
David Roundy <[EMAIL PROTECTED]>**20070806221156
 Note: this might be able to cause trouble with existing repositories.
] 
[refactor to expand is_identity and use it to encapsulate "identitiness"
David Roundy <[EMAIL PROTECTED]>**20070806230927] 
[add allFL function to Ordered.
David Roundy <[EMAIL PROTECTED]>**20070808004826] 
[simple refactor in DarcsRepo.
David Roundy <[EMAIL PROTECTED]>**20070808004638] 
[fix ordering mistyping in sift_for_pending.
David Roundy <[EMAIL PROTECTED]>**20070806231124
 This doesn't change any behavior, but makes type correspond
 to actual order of patches in the list.
] 
[minor code cleanups.
David Roundy <[EMAIL PROTECTED]>**20070806220028] 
[minor code cleanup.
David Roundy <[EMAIL PROTECTED]>**20070806220005] 
[[issue69] Add a table of environmental variables to the manual.
Eric Kow <[EMAIL PROTECTED]>**20070807210622
 
 This makes it possible to support a more usage-oriented rewrite of the
 environmental variables doc.
] 
[Use System.Directory.copyFile for file copying.
Kevin Quick <[EMAIL PROTECTED]>**20070723071533] 
[cut new merge code from old Commute module.
David Roundy <[EMAIL PROTECTED]>**20070801225540] 
[add new Merge module.
David Roundy <[EMAIL PROTECTED]>**20070801205859] 
[add marking of cancelled patches
David Roundy <[EMAIL PROTECTED]>**20070728000618] 
[add (unused) "cancel" patches.
David Roundy <[EMAIL PROTECTED]>**20070727193153] 
[add named primitive subpatch helpers.
David Roundy <[EMAIL PROTECTED]>**20070727185400] 
[Fixed fancy_mergeFL and fancy_mergeFL_FL
Jason Dagit <[EMAIL PROTECTED]>**20070725215429] 
[Implemented fancy_mergeFL_FL2
Jason Dagit <[EMAIL PROTECTED]>**20070626235249] 
[Implemented fancy_mergeFL_FL
Jason Dagit <[EMAIL PROTECTED]>**20070626230558] 
[Added fancy_commute, still working on fancy_merge
Jason Dagit <[EMAIL PROTECTED]>**20070623000136] 
[Use readFilePS instead of readFile for 'show contents' command.
Eric Kow <[EMAIL PROTECTED]>**20070805190830] 
[Fix 'show contents' documentation and help.
Eric Kow <[EMAIL PROTECTED]>**20070805142053] 
[[issue141] Implement darcs show contents command.
Eric Kow <[EMAIL PROTECTED]>**20070802040813] 
[Add test for show contents command.
Eric Kow <[EMAIL PROTECTED]>**20070801203053] 
[Add test for issue467.
Eric Kow <[EMAIL PROTECTED]>**20070801184138] 
[[issue467] changes --context --repodir
Eric Kow <[EMAIL PROTECTED]>**20070801184051] 
[[issue316] Prompt for confirmation if amending someone else's patch.
Eric Kow <[EMAIL PROTECTED]>**20070731192845] 
[Export the non-interactive part of get_author.
Eric Kow <[EMAIL PROTECTED]>**20070731190748] 
[Move just_dir helper function to Darcs.FilePathUtils.
Eric Kow <[EMAIL PROTECTED]>**20070730193703] 
[Rename fix_maybe_absolute and friends to something clearer.
Eric Kow <[EMAIL PROTECTED]>**20070730193603
 
 As suggested by David.
] 
[Rename (again) query/list to show.
Eric Kow <[EMAIL PROTECTED]>**20070730184757
 
 Clarify the online help while we're at it.
] 
[Fix conflicts between issue308 fix and amend-record metadata editing.
Eric Kow <[EMAIL PROTECTED]>**20070729191434] 
[Do not run test suite if amending metadata only.
Eric Kow <[EMAIL PROTECTED]>**20070728055505] 
[Add patchname to logfile when amending long comment.
Eric Kow <[EMAIL PROTECTED]>**20070728054752
 
 And simplify use of unlines (we already detect trailing newline).
] 
[Allow amend-record to edit metadata even if no changes are selected.
Eric Kow <[EMAIL PROTECTED]>**20070728053612] 
[[issue161] Implement amend-record --edit-long-comment, etc.
Eric Kow <[EMAIL PROTECTED]>**20070727205233
 
 Should also satisfy requests in issue77, issue276 and issue388.
] 
[Catch bad patch names in record --pipe.
Eric Kow <[EMAIL PROTECTED]>**20070727203606
 
 This appears to be a bug by which we have not yet been bitten.
] 
[[issue389] Support record -m --prompt-long-comment.
Eric Kow <[EMAIL PROTECTED]>**20070727203503] 
[Combine get_patchname with get_log in record command.
Eric Kow <[EMAIL PROTECTED]>**20070727203237
 
 This probably makes the code longer, but more explicit and with
 support for 'prior patchnames' (for amend-record).
] 
[Add some rudimentary amend-record + metadata tests.
Eric Kow <[EMAIL PROTECTED]>**20070725211157] 
[Fix conflict between unpull refactor and --no-deps.
Eric Kow <[EMAIL PROTECTED]>**20070805105818] 
[Hide darcs unpull command.
Eric Kow <[EMAIL PROTECTED]>**20070730181138] 
[Slightly refactor unpull (make it an alias).
Eric Kow <[EMAIL PROTECTED]>**20070728095057] 
[mark dangerous code with a fixme.
David Roundy <[EMAIL PROTECTED]>**20070727012503] 
[Fix typo.
Eric Kow <[EMAIL PROTECTED]>**20070805084445] 
[Resolve conflicts between issue353 and GUI removal patches.
Eric Kow <[EMAIL PROTECTED]>**20070805061431] 
[resurrect --no-deps [issue353]
Tommy Pettersson <[EMAIL PROTECTED]>**20070801213028] 
[make --no-deps work with obliterate, unrecord and unpull
Tommy Pettersson <[EMAIL PROTECTED]>**20070801212519] 
[make --no-deps work with push and send
Tommy Pettersson <[EMAIL PROTECTED]>**20070801212256] 
[fix typo
Tommy Pettersson <[EMAIL PROTECTED]>**20070729225249] 
[fix website in darcs.cgi.
David Roundy <[EMAIL PROTECTED]>**20070802220205] 
[Resolve the expected conflict with 'resolv issue490 fix'
Eric Kow <[EMAIL PROTECTED]>**20070730204220] 
[resolv issue490 fix in stable (will conflict with resolv in unstable)
Tommy Pettersson <[EMAIL PROTECTED]>**20070729225410] 
[Add test for issue308
Kevin Quick <[EMAIL PROTECTED]>**20070723062114] 
[Fix issue308: don't record empty patch with --ask-deps
Kevin Quick <[EMAIL PROTECTED]>**20070728190329] 
[add cancelled patch constructor.
David Roundy <[EMAIL PROTECTED]>**20070726180243] 
[add unused Marked constructor to Patch.
David Roundy <[EMAIL PROTECTED]>**20070726003422] 
[fix filenames on conflicted patch.
David Roundy <[EMAIL PROTECTED]>**20070726002029] 
[Started fancy_merge
Jason Dagit <[EMAIL PROTECTED]>**20070620220335] 
[Added mergeFL and mergeFL_FL
Jason Dagit <[EMAIL PROTECTED]>**20070619025004] 
[move to pure record-access in Patch.Info.
David Roundy <[EMAIL PROTECTED]>**20070727001358] 
[improve error message when unable to access a repository.
David Roundy <[EMAIL PROTECTED]>**20070726230517] 
[Always use cloneFile for copying files.
Kevin Quick <[EMAIL PROTECTED]>**20070723065621] 
[Remove more GUI code.
Eric Kow <[EMAIL PROTECTED]>**20070727202816] 
[Expose more PatchInfo parts and switch to record syntax.
Eric Kow <[EMAIL PROTECTED]>**20070725210644] 
[Refactor amend-record test.
Eric Kow <[EMAIL PROTECTED]>**20070725194320] 
[[issue386] Fix some --dry-run messages: "Would push" not "Pushing".
Eric Kow <[EMAIL PROTECTED]>**20070722211900] 
[[issue313] Ensure that logfile for record has trailing newline.
Eric Kow <[EMAIL PROTECTED]>**20070722053200] 
[Add a 'commit' command stub.
Eric Kow <[EMAIL PROTECTED]>**20070722053050] 
[Remove GUI code and stuff to build it.
Eric Kow <[EMAIL PROTECTED]>**20070715110324
 
 Suggested by Juliusz Chroboczek at FOSDEM 2006.  The code is pretty harmless
 in itself (it's hidden away by ifdefs), but potentially distracting.
] 
[Makes non-repository paths in DarcsFlags absolute [issue427].
Zachary P. Landau <[EMAIL PROTECTED]>**20070724013425] 
[Fix issue329: typing q for record --ask-deps records anyway with no deps.
Kevin Quick <[EMAIL PROTECTED]>**20070718055426] 
[Update test suite to account for mark-conflicts command.
Eric Kow <[EMAIL PROTECTED]>**20070722044435] 
[Fix missing newline in inventory (issue412).
Eric Kow <[EMAIL PROTECTED]>**20070718210138
 
 This simplifies third party scripts that have to parse the darcs inventory.
] 
[Rename query to list; manifest to files.
Eric Kow <[EMAIL PROTECTED]>**20070718204703
 
   query          => list (with query as alias)
   query manifest => list files (with manifest as alias)
   query tags     => list tags
 
 Note that the list manifest and list files commands differ in that the
 former displays directories by default and the latter does not.
] 
[Refactor aliases and stubs (rm, unadd, resolve).
Eric Kow <[EMAIL PROTECTED]>**20070718201453] 
[Add helpers command_alias and command_stub.
Eric Kow <[EMAIL PROTECTED]>**20070718200940] 
[Add all pulled repos to _darcs/prefs/repos (issue368).
Eric Kow <[EMAIL PROTECTED]>**20070717180127] 
[Implement apply --dry-run (issue37).
Eric Kow <[EMAIL PROTECTED]>**20070717103257] 
[Do not set defaultrepo if --dry-run (issue186).
Eric Kow <[EMAIL PROTECTED]>**20070717101607] 
[Add test for issue396.
Eric Kow <[EMAIL PROTECTED]>**20070717054431] 
[Filter out empty filenames (issue396).
Eric Kow <[EMAIL PROTECTED]>**20070717054319] 
[Always use permissive disambiguation of commands.
Eric Kow <[EMAIL PROTECTED]>**20070717051631] 
[Use prettyException in clarify_errors (issue73).
Eric Kow <[EMAIL PROTECTED]>**20070717050732
 
 This solves one of three bugs in issue73, namely that we blame the user
 for darcs's own errors.
] 
[Use Control.Exception.catch in Darcs.Utils
Eric Kow <[EMAIL PROTECTED]>**20070717050613
 
 This affects helper functions like catchall and clarify_errors.
] 
[Tweak padding in usage_helper (mark-conflicts needs an extra space).
Eric Kow <[EMAIL PROTECTED]>**20070716230013] 
[Rename resolve to mark-conflicts (issue113).
Eric Kow <[EMAIL PROTECTED]>**20070716225635
 
 Resolve is retained as a (hidden) alias.
] 
[Make --directories the default in query manifest (issue456).
Eric Kow <[EMAIL PROTECTED]>**20070716220308] 
[Allow --list-options even if command cannot be run (issue297).
Eric Kow <[EMAIL PROTECTED]>**20070716210631
 
 If the command cannot be run, just print the possible flags, not the file args.
] 
[Implement hidden commands.
Eric Kow <[EMAIL PROTECTED]>**20070716204107
 
 This makes it possible to have command stubs or aliases without cluttering
 the usage info.
] 
[Implement command stubs 'rm', 'unadd', 'move' (issue127).
Eric Kow <[EMAIL PROTECTED]>**20070716202944
 
 These hidden commands are either stubs (they print some text and quit) or
 aliases (they do the same thing as some other command).
] 
[Distinguish between strict and permissive disambiguation (regression).
Eric Kow <[EMAIL PROTECTED]>**20070715203256
 
 Permissive disambiguation lets you handle the case where you supply a
 supercommand and a flag (i.e. not a subcommand).
] 
[Refactor parsing of command line arguments.
Eric Kow <[EMAIL PROTECTED]>**20070715200140] 
[Rewrite disambiguate_commands.
Eric Kow <[EMAIL PROTECTED]>**20070715200119
 
 This should make it more explicit what is going on.
] 
[Fix supercommand --help (issue282).
Eric Kow <[EMAIL PROTECTED]>**20070715170843] 
[Add crossref.png (issue485).
Eric Kow <[EMAIL PROTECTED]>**20070714230519] 
[Fix conflicts with Kevin Quick's [DarcsRepo] stuff.
Eric Kow <[EMAIL PROTECTED]>**20070722193223] 
[Added --nolinks option to request actual copies instead of hard-links for files.
Kevin Quick <[EMAIL PROTECTED]>**20070613193742] 
[Provide [DarcsFlag] command-line options to copyLocal
Kevin Quick <[EMAIL PROTECTED]>**20070612041516] 
[More concise --look-for-adds description.
Eric Kow <[EMAIL PROTECTED]>**20070708141727] 
[Harmonise capitalisation (etc) in flags help.
Eric Kow <[EMAIL PROTECTED]>**20070708122719] 
[fix repodir test cleanup
Tommy Pettersson <[EMAIL PROTECTED]>**20070715183319] 
[Define datarootdir early enough in autoconf.mk.in (issue 493).
Dave Love <[EMAIL PROTECTED]>**20070714165441] 
[Use listToMaybe instead of safehead.
Eric Kow <[EMAIL PROTECTED]>**20070708113613] 
[Fix issue490 conflicts.
Eric Kow <[EMAIL PROTECTED]>**20070708112618] 
[fix for issue 490
David Roundy <[EMAIL PROTECTED]>**20070629195741
 This patch ensures that we never try to use a checkpoint
 for a tag that isn't in a place where the inventory is
 broken.
 
 It's a little ugly because it also puts more of the checkpoint
 handling code in Checkpoint, which required a refactor to avoid
 import loops.
] 
[Fix Makefile bug (symlink for bigpage.tex).
Eric Kow <[EMAIL PROTECTED]>**20070714192500] 
[Canonize Andres Loeh and Daniel Gorin.
Eric Kow <[EMAIL PROTECTED]>**20070714200521] 
[Sort tags file (Vim likes it that way).
Eric Kow <[EMAIL PROTECTED]>**20070708213833] 
[Fix tags target in Makefile to account for mv to src.
Eric Kow <[EMAIL PROTECTED]>**20070708212921] 
[Fix hscurl.c conflicts.
Eric Kow <[EMAIL PROTECTED]>**20070714195126] 
[Fix issue420: User Agent size limit for curl gets is removed.
Kevin Quick <[EMAIL PROTECTED]>**20070711225049] 
[String parameters to libcurl are kept alive to conform with the api specification
[EMAIL PROTECTED] 
[work around < &lt problem in bigpage.html [issue483]
Tommy Pettersson <[EMAIL PROTECTED]>**20070712233559
 latex2html seems to misunderstand the sequence "\<" in verbatim mode, so I
 split it into two verbatim sections. It appears to look the same, but it
 could probably cause an unfortunate line break.
] 
[Fix handling of --repo with relative paths.
Eric Kow <[EMAIL PROTECTED]>**20070714160336
   
 We did not correctly deal with the case where the user passes in a directory
 path via the --repo flag (cf --repodir).  The fix is to make findRepository
 properly aware of the --repo flag.  This way, if we have been passed a --repo
 argument, and the argument is a directory, we avoid calling seekRepo.  Note
 that we still have to keep the old code around too, to cover the case where
 --repo is a URL.
] 
[remove TODO from passing repodir.pl test
David Roundy <[EMAIL PROTECTED]>**20070530195104] 
[fix links to wiki on web page (again)
Tommy Pettersson <[EMAIL PROTECTED]>**20070630080403
 (They aren't broken, but) change the /index.html/ part to /DarcsWiki/ as
 David intended it.
] 
[move URL for darcs.cgi to new server.
David Roundy <[EMAIL PROTECTED]>**20070629200757] 
[add right-arrow with new name desired by new latex2html.
[EMAIL PROTECTED] 
[simplify C macro
David Roundy <[EMAIL PROTECTED]>**20070619011246] 
[change wiki links on webpage to wiki.darcs.net
Tommy Pettersson <[EMAIL PROTECTED]>**20070617095655] 
[bump version to 1.1.0pre1
Tommy Pettersson <[EMAIL PROTECTED]>**20070616202236] 
[Make all of Patch work with gadts.
David Roundy <[EMAIL PROTECTED]>**20070615214613] 
[Make Read work with gadts.
David Roundy <[EMAIL PROTECTED]>**20070615204731] 
[fix Jason's code to work with gadts.
David Roundy <[EMAIL PROTECTED]>**20070615194704] 
[fix type signature of ||| in Commute.lhs.
David Roundy <[EMAIL PROTECTED]>**20070615153019] 
[when using type witnesses, always compile with -fglasgow-exts.
David Roundy <[EMAIL PROTECTED]>**20070615152847] 
[Changed Patch to GADTs notation
Jason Dagit <[EMAIL PROTECTED]>**20070615013022] 
[conflicted commute now uses filterE
Jason Dagit <[EMAIL PROTECTED]>**20070615003757] 
[fixed conflict
Jason Dagit <[EMAIL PROTECTED]>**20070615003733] 
[added filterE
Jason Dagit <[EMAIL PROTECTED]>**20070615002503] 
[fixed conflicts
Jason Dagit <[EMAIL PROTECTED]>**20070614230216] 
[Implement read/show of Conflicted patches.
Jason Dagit <[EMAIL PROTECTED]>**20070614215509] 
[Implement Conflicted patches.
Jason Dagit <[EMAIL PROTECTED]>**20070614205738] 
[fix gadts in Viewing
David Roundy <[EMAIL PROTECTED]>**20070615011957] 
[test gadt witnesses a bit
David Roundy <[EMAIL PROTECTED]>**20070615005140] 
[make Commute work again with witnesses.
David Roundy <[EMAIL PROTECTED]>**20070615004552] 
[cannot derive instances for gadts.
David Roundy <[EMAIL PROTECTED]>**20070615002830] 
[convert Commute to gadts.
David Roundy <[EMAIL PROTECTED]>**20070614235440] 
[make EqCheck derive Show.
David Roundy <[EMAIL PROTECTED]>**20070614212456] 
[fix bug in context of :<
David Roundy <[EMAIL PROTECTED]>**20070614011916] 
[export MyEq class
David Roundy <[EMAIL PROTECTED]>**20070614004407] 
[gadtize (File/Dir)PatchType
David Roundy <[EMAIL PROTECTED]>**20070614001425] 
[gadtize Show
David Roundy <[EMAIL PROTECTED]>**20070613211510] 
[improve type of commute_to_end
David Roundy <[EMAIL PROTECTED]>**20070613203623] 
[make gadt witnesses work with Core.
David Roundy <[EMAIL PROTECTED]>**20070613040231] 
[make Ordered compile with gadt witnesses.
David Roundy <[EMAIL PROTECTED]>**20070613030137] 
[Step 2 of gadts refactor
Jason Dagit <[EMAIL PROTECTED]>**20070612234042] 
[Commute has arguments backwards
Jason Dagit <[EMAIL PROTECTED]>**20070612201646] 
[clean up ordered data types
David Roundy <[EMAIL PROTECTED]>**20070530194023] 
[use more expressive types than tuples
David Roundy <[EMAIL PROTECTED]>**20070530170100] 
[start gadt stuff
David Roundy <[EMAIL PROTECTED]>**20070530011817] 
[fix bug in hashed-inventory get
David Roundy <[EMAIL PROTECTED]>**20070530172527] 
[add test to trigger yet another buggy case.
David Roundy <[EMAIL PROTECTED]>**20070422152651] 
[check for gzopen directly in zlib
[EMAIL PROTECTED]
 
 Without this change, configure will fail on systems having curl and zlib
 in different locations. Because curl depends on zlib and is already detected
 prior to zlib by the configure file, the AC_CHECK_FUNC check to curl will
 succeed. Some combinations of pkgconfig/curl versions do no longer add the
 -lz flag in its pkgconfig file, so darcs won't record -lz as a necessary
 flag, and the build will fail later.
 
 A different solution to the problem would be to move the whole check for
 zlib to *before* the check for curl.
] 
[Fix Windows build breakage.
Eric Kow <[EMAIL PROTECTED]>**20070520054713] 
[Modernise imports of System.IO.
Eric Kow <[EMAIL PROTECTED]>**20070507192521
 
 Note that some try/bracket/etc are now imported from Control.Exception.
] 
[Use System.Process under Unix.
Eric Kow <[EMAIL PROTECTED]>**20070426194615] 
[Remove conflictors unit tests.
Eric Kow <[EMAIL PROTECTED]>**20070513063537] 
[Complete conflictors code removal.
Eric Kow <[EMAIL PROTECTED]>**20070513061545
 
 Remove submerge_in_dir function, apparantly only used by the conflictors
 code.
] 
[remove unneeded (and unsafe) export from Patch.
David Roundy <[EMAIL PROTECTED]>**20070511005356] 
[remove (unused) conflictor code
David Roundy <[EMAIL PROTECTED]>**20070511003956] 
[Fix makefile conflict.
Eric Kow <[EMAIL PROTECTED]>**20070512194803] 
[fix path to completion scripts
Peter Simons <[EMAIL PROTECTED]>**20070511033227] 
[Support makefile docdir/datarootdir variables.
Dave Love <[EMAIL PROTECTED]>**20070507210129
 Also avoid warnings from autoconf 2.61.  The backward compatibility
 stuff should be tidied up once requiring 2.61 is acceptable.
] 
[cut unneeded pragma from SlurpDirectory.lhs
David Roundy <[EMAIL PROTECTED]>**20070505140749] 
[Added prehooks
Jason Dagit <[EMAIL PROTECTED]>**20070505202210] 
[Use system for calling interactive cmds in Windows instead of rawSystem.
Eric Kow <[EMAIL PROTECTED]>**20070415132608
 
 This lets us support switches, for example, in DARCS_EDITOR.
] 
[resolve conflict.
David Roundy <[EMAIL PROTECTED]>**20070422213416] 
[make copyInventory work for all permutations of repo formats.
David Roundy <[EMAIL PROTECTED]>**20070422155344] 
[fix bug in Internal.
David Roundy <[EMAIL PROTECTED]>**20070422155324] 
[add support for different kinds of get.
David Roundy <[EMAIL PROTECTED]>**20070422152934] 
[fix strict get to a hashed repo from another.
David Roundy <[EMAIL PROTECTED]>**20070422151300
 The trouble was that my clever idea of lazily downloading patches even
 during a strict get didn't work, since we didn't have the source while
 reading the patches the second time.  One option would be to add that
 source while applying patches the second time, but that seems like it'd
 require a more tricky interface than just copying things strictly the first
 time.
] 
[don't print "partial repository" guess.
David Roundy <[EMAIL PROTECTED]>**20070422150603
 This guess is all too often inaccurate, and with the new hashed
 inventories, it'll be even more often inaccurate.
] 
[remove redundant copyInventory.
David Roundy <[EMAIL PROTECTED]>**20070422144910] 
[add tests for mixed inventories to hashed_inventory.sh.
David Roundy <[EMAIL PROTECTED]>**20070418234821] 
[rewrite --lazy to be more flexible.
David Roundy <[EMAIL PROTECTED]>**20070416154113
 This change makes it so we can handle a configured set of URLs for patch
 origins.  See the description in the Prefs.lhs documentation for details.
 In addition, I've added a new --ephemeral option, which allows the user to
 create repositories without any patch files at all (which seems a bit
 scary, but potentially handy).
] 
[fix test_scripts bug pointed out by Eric.
David Roundy <[EMAIL PROTECTED]>**20070421213635] 
[fix FIXME for handling hashed+normal inventory at the same time.
David Roundy <[EMAIL PROTECTED]>**20070418215614
 This fix also makes the tests pass with both inventory types enabled,
 so I added that to the test suite.  This was easier than I expected!
] 
[remove unused export from RepoFormat.
David Roundy <[EMAIL PROTECTED]>**20070414174933] 
[Modernise imports of Foreign.Ptr.
Eric Kow <[EMAIL PROTECTED]>**20070407102536] 
[Make record_editor.pl test work under Windows.
Eric Kow <[EMAIL PROTECTED]>**20070415132932
 
 I believe setting the PATH to '' was giving me libcurl4.dll complaints
 under Windows.
 
 Note also that this simplifies away part of a test, in that we were
 initially trying to create stuff in a directory called 'temp dir2 " "',
 but just creating the dir itself got so tricky that I just gave up and
 switched to 'temp dir2', still with a space, no quotes.
] 
[Make mv.pl test pass on Windows.
Eric Kow <[EMAIL PROTECTED]>**20070415114122
 
 Fixed test count mismatch, and recovery of absolute path under msys.
] 
[Include src/Darcs/Patch in makefile's SRC_DIRS.
Dave Love <[EMAIL PROTECTED]>**20070415215139] 
[Re-fix MAKEMANUAL.
Dave Love <[EMAIL PROTECTED]>**20070415122733] 
[Fix applyToWorking conflicts.
Eric Kow <[EMAIL PROTECTED]>**20070422060319
 
 Was recorded against darcs stable post 1.0.9rc2.
] 
[Fix MAKEMANUAL conflict.
Eric Kow <[EMAIL PROTECTED]>**20070413231608] 
[Fix MAKEMANUAL make target.
Dave Love <[EMAIL PROTECTED]>**20070410192153] 
[Move packaging related stuff to its own directory (release).
Eric Kow <[EMAIL PROTECTED]>**20070401071845] 
[Move extras to their own directory (tools).
Eric Kow <[EMAIL PROTECTED]>**20070401071734
 
 Shell completion scripts, cgi.
 
] 
[Move documentation to its own directory (doc).
Eric Kow <[EMAIL PROTECTED]>**20070401071635] 
[Resolve Makefile conflict.
Eric Kow <[EMAIL PROTECTED]>**20070413231906] 
[add support for partial and lazy downloading of hashed repos.
David Roundy <[EMAIL PROTECTED]>**20070405000616] 
[add framework for lazily fetching hash files.
David Roundy <[EMAIL PROTECTED]>**20070403232223
 This patch doesn't yet actually have any effect, but prepares
 the way for changes to allow a variety of --partial that won't
 have the downside of sometimes causing darcs to fail later,
 since one can always download the patch files from the original
 server.
] 
[fix bug Eric pointed out (which has also now bitten me).
David Roundy <[EMAIL PROTECTED]>**20070404233317
 This was a bug in the Checkpoint repo, where we assumed we were
 looking at the current working directory, incorrectly.
] 
[Fix unit.lhs import.
Eric Kow <[EMAIL PROTECTED]>**20070331194046
 
 ...due to sloppy scripting during the hierarchical shakeup.
 
] 
[make --set-scripts-executable work with get and hashed inventories.
David Roundy <[EMAIL PROTECTED]>**20070329010828] 
[Fix conflicts; adapt QueryTag to new hierarchical structure.
Eric Kow <[EMAIL PROTECTED]>**20070331191925] 
[fix checkpoint handling with hashed inventories.
David Roundy <[EMAIL PROTECTED]>**20070330154325] 
[fix bug in makefile regarding manual.
David Roundy <[EMAIL PROTECTED]>**20070330154259] 
[whitespace cleanups in makefile.
David Roundy <[EMAIL PROTECTED]>**20070330152018] 
[by default test hashed inventories plus normal.
David Roundy <[EMAIL PROTECTED]>**20070329010900] 
[fail on error in get_patches_beyond_tag.
David Roundy <[EMAIL PROTECTED]>**20070328172408
 This will expose any bugs where we use this function wrongly.
 (As was the case in darcs check --partial with hashed inventories.)
] 
[Fix manual compilation errors (due to source reorganisation).
Eric Kow <[EMAIL PROTECTED]>**20070313214302] 
[Fix conflicts.
Eric Kow <[EMAIL PROTECTED]>**20070313210908] 
[Modernise imports of Data.(Char|Int|List|Maybe).
Eric Kow <[EMAIL PROTECTED]>**20070313210805] 
[Modernise imports of Control.Monad.
Eric Kow <[EMAIL PROTECTED]>**20070313205312] 
[Modernise imports of System.Directory.
Eric Kow <[EMAIL PROTECTED]>**20070313205200] 
[Correct compilation errors in win32 due to src reorganisation.
Eric Kow <[EMAIL PROTECTED]>**20070313210732] 
[Move Haskell sources to src directory with hierarchical structure.
Eric Kow <[EMAIL PROTECTED]>**20070313200751
 
 src
   general modules, possibly to be spun off as non-darcs libraries 
   administrative stuff (e.g., modules generated by autoconf)
 
 src/Darcs
   darcs-specific modules, catch-all for modules I didn't know what
   to do with
 
 src/Darcs/Patch
   core patch operations
 
 src/Darcs/Repository
   modules specific to the maintenance of the darcs repo, especially the _darcs
   stuff
 
 src/Darcs/Commands
   the darcs commands, e.g. pull, record, whatsnew
 
] 
[Move osx directory to src.
Eric Kow <[EMAIL PROTECTED]>**20070313200304] 
[Move C files to src directory.
Eric Kow <[EMAIL PROTECTED]>**20070313200135] 
[Add subdirectories for source files.
Eric Kow <[EMAIL PROTECTED]>**20070313194050] 
[Extend GHCFLAGS override mechanism to allow for subdirectories.
Eric Kow <[EMAIL PROTECTED]>**20070313193917] 
[In tests, don't assume diff has -u, -x flags.
Dave Love <[EMAIL PROTECTED]>**20070305202838] 
[Fixes for Solaris sh in tests: no $(...), test -e, or ! pipelines.
Dave Love <[EMAIL PROTECTED]>**20070311170210] 
[Fix conflicts related to --ssh-cm flag.
Eric Kow <[EMAIL PROTECTED]>**20070311205820] 
[Fix test/ssh.sh conflicts.
Eric Kow <[EMAIL PROTECTED]>**20070311205156] 
[Add changelog entries (file: quick) for pull --complement changes.
Kevin Quick <[EMAIL PROTECTED]>**20070205185329] 
[In tests, don't assume grep has -q and -x flags.
Dave Love <[EMAIL PROTECTED]>**20070225114022] 
[Fix bash-ism `export foo=' in tests.
Dave Love <[EMAIL PROTECTED]>**20070225113216] 
[Add send --output-auto-name information to the documentation.
Zachary P. Landau <[EMAIL PROTECTED]>**20070221014555] 
[Add test for send --output-auto-name.
Zachary P. Landau <[EMAIL PROTECTED]>**20070221014501] 
[Add --output-auto-name option to Send.
Zachary P. Landau <[EMAIL PROTECTED]>**20070221014327] 
[More sed compliance on pull_compl test.
Eric Kow <[EMAIL PROTECTED]>**20070217073744] 
[Fix pull_compl test sed compliance.
Kevin Quick <[EMAIL PROTECTED]>**20070214033347] 
[Add pull_compl test; note interesting duplicate repo elimination in docs.
Kevin Quick <[EMAIL PROTECTED]>**20070206065236] 
[change "current" to (or add) "pristine" in verbose message and doc
Tommy Pettersson <[EMAIL PROTECTED]>**20070211191942] 
[Resolve conflict between complement add and get_recorded_unsorted.
Kevin Quick <[EMAIL PROTECTED]>**20070206071832] 
[Added --complement to pull to allow "exclusion" repos
Kevin Quick <[EMAIL PROTECTED]>**20070204181301] 
[Correct test for quoted arguments in DARCS_EDITOR.
Eric Kow <[EMAIL PROTECTED]>**20070204211312
 
 1) On MacOS X, grep lives in /usr/bin, not /bin
 2) We shouldn't escape the double quotes because they're already protected
    by the single quotes
 
] 
[Restore working directory if no repository is found (issue385).
Zachary P. Landau <[EMAIL PROTECTED]>**20070203173440
 seekRepo continues to go further up the directory tree looking for a
 repository.  If we are not in a repository, our current working directory
 becomes /.  This causes problems with code that falls back on creating
 temporary files in the current directory.  This patch will restore the
 directory the user started in if seekRepo fails.
] 
[refactor get_unrecorded.
David Roundy <[EMAIL PROTECTED]>**20070128231405
 I've removed the [DarcsFlag] argument, and added two new functions
 get_unrecorded_unsorted, and get_unrecorded_no_look_for_adds, which do what
 they say.  I think this simplifies its use, and cleans things up a tad.  It
 doesn't scale to many different ways to get_unrecorded, but I don't think
 we want to go there.
] 
[use (empty) opts to Repository in list_authors and make_changelog
Tommy Pettersson <[EMAIL PROTECTED]>**20070128165840
 They where left out in the opts Repository refactoring.
] 
[fix bug triggered in replace.sh
David Roundy <[EMAIL PROTECTED]>**20070128002206
 This bug was an annoying one that seemed to involve trouble caused by
 unsafeInterleaveIO and the order of evaluation, since we change the working
 directory.  I've simplified the code significantly.  Complicating the debug
 process was a race condition caused by the lack of --ignore-times in
 replace.sh, which was because darcs replace didn't accept that option.
] 
[refactor: add opts into Repository.
David Roundy <[EMAIL PROTECTED]>**20070128000728] 
[add test for replace that messes with unrecorded hunks
Tommy Pettersson <[EMAIL PROTECTED]>**20070125153803] 
[go back to using system for edit_file/view_file instead of exec (system 'cmd "$ARG"')
Benedikt Schmidt <[EMAIL PROTECTED]>**20070131162811] 
[use TODO instead of pass for record_editor test
Benedikt Schmidt <[EMAIL PROTECTED]>**20070131161635] 
[add some tests for edit_file and DARCS_EDITOR handling
Benedikt Schmidt <[EMAIL PROTECTED]>**20070131011526] 
[Remove extraneous parentheses (RepoFormat).
Eric Kow <[EMAIL PROTECTED]>**20070127231359] 
[make write_repo_format agree with read_repo_format (use | for separating properties)
Benedikt Schmidt <[EMAIL PROTECTED]>**20070126143752] 
[Remove unused functions from Population.
Eric Kow <[EMAIL PROTECTED]>**20070107232034
 
 The functions are not shown to be used by any other part of darcs.
 Perhaps they should be restored if we ever get to work seriously on
 libdarcs.
 
] 
[Import IO.bracket instead of Control.Exception.bracket in Exec.
Eric Kow <[EMAIL PROTECTED]>**20070107211935
 
 This makes darcs work on *nix the same way it did before Simon Marlow's
 runProcess patch for Windows and my conflict-resolution tweaks.
 
] 
[Import bracketOnError from Workaound instead of Control.Exception.
Eric Kow <[EMAIL PROTECTED]>**20061225212444
   
 bracketOnError was introduced in GHC 6.6, whereas we want to support 6.4.1 and
 higher.
   
] 
[Fix conflicts and compile errors (Exec runProcess stuff).
Eric Kow <[EMAIL PROTECTED]>**20061225212423
 
 Side A:
   Simon Marlow: Use System.Process on Windows
 
 Side B:
   Edwin Thomson : Make Exec.lhs not import unneeded Control.Exception functions
     when compiling on Windows.
   Magnus Jonsson : Added rigorous error checking in exec
     
 Compile errors in question were just import-related issues.
 
] 
[Use System.Process on Windows
Simon Marlow <[EMAIL PROTECTED]>**20061129160710
 
 This was an attempt to address "[issue218] Patch bundle failed hash",
 but unfortunately it doesn't fix the problem.  Still, System.Process
 is a better way to invoke external commands these days.
 
 For now, the new code only replaces the Windows version of exec.  This
 means that GHC 6.4 will be required to build darcs on Windows.  Better
 would be to add a configure test, but I ran out of time here.
] 
[fix [issue370], darcs ignored args contained in VISUAL variable
Benedikt Schmidt <[EMAIL PROTECTED]>**20061220110807
 given VISUAL="emacs -nw", darcs would run "emacs file" instead of
 "emacs -nw file"
] 
[Make annotate work on files with spaces in the name
[EMAIL PROTECTED]
 
] 
[Prettify exceptions in identifyRepository.
Juliusz Chroboczek <[EMAIL PROTECTED]>**20061218025453] 
[QP-encode bundles when putting to a remote repo.
Juliusz Chroboczek <[EMAIL PROTECTED]>**20061218003034] 
[fix pending bug in darcs get --tag.
David Roundy <[EMAIL PROTECTED]>**20061217225256
 This patch addresses the bug displayed in Tommy's test:
 
 Mon Dec 11 20:28:21 CET 2006  Tommy Pettersson <[EMAIL PROTECTED]>
   * add test for get --tag and pending
] 
[fix issue360, with darcs mv foo foo.
David Roundy <[EMAIL PROTECTED]>**20061217212340] 
[Separate comment from OPTIONS pragma for GHC 6.4 compatibility.
Eric Kow <[EMAIL PROTECTED]>**20061217041212
 
] 
[Resolve conflicts in David's hashed_inventory optimize patches.
Eric Kow <[EMAIL PROTECTED]>**20061217031027
 
] 
[Make hashed inventories support optimize and reordering.
David Roundy <[EMAIL PROTECTED]>**20061216193913] 
[fix bug in haskell_policy check for HopefullyPrivate.
David Roundy <[EMAIL PROTECTED]>**20061210234453
 Perhaps with this test, we can rename it to CertainlyPrivate?  :)
] 
[don't use HopefullyPrivate outside of Hopefully.
David Roundy <[EMAIL PROTECTED]>**20061210231623
 The idea is to hide the Hopefully constructors, so I can hide some more
 information in there, if I like, which should be handy for the hashed
 inventories, and may also come in handy (for similar reasons) with git
 repositories.
] 
[change Maybe Patch to Hopefully Patch.
David Roundy <[EMAIL PROTECTED]>**20061210213536
 This rather pervasive change move us to using a new Hopefully type, which
 is similar to Either String for storing patches that may or may not exist.
 This should improve error reporting.  At a minimum it'll making easier to
 improve error reporting.
] 
[resolve conflict in white space.
David Roundy <[EMAIL PROTECTED]>**20061210211846] 
[fix pending bug that broke several_commands.sh.
David Roundy <[EMAIL PROTECTED]>**20061209223916] 
[make optimize less DarcsRepo-specific.
David Roundy <[EMAIL PROTECTED]>**20061209205755] 
[eliminate DarcsRepo.am_in_repo.
David Roundy <[EMAIL PROTECTED]>**20061204153128
 This patch is a Good Thing, even though repair and optimize don't yet
 properly support anything bug old-fashioned repositories, because without
 it, when using such repositories, one can find those command operating on a
 different repository than intended (e.g. the test suite runs optimize on
 the darcs repository itself).  Now they'll fail as they ought to, when run
 on a repo format they don't support.
] 
[fix hashed inventory bug in add and prevent it happening again.
David Roundy <[EMAIL PROTECTED]>**20061204020823] 
[make get and put reuse initialize code.
David Roundy <[EMAIL PROTECTED]>**20061203220833
 This patch actually fixes put to properly accept and use any flags that
 init accepts, which is a Good Thing.  It also ensures that get behaves
 consistently with init in the future.  Also a Good Thing.
] 
[make put work with hashed inventories (and test for this).
David Roundy <[EMAIL PROTECTED]>**20061203211141] 
[fix new get to not mess up pending (fixes latest hashed_inventory.sh tests).
David Roundy <[EMAIL PROTECTED]>**20061203173722] 
[add some more hashed_inventory.sh tests.
David Roundy <[EMAIL PROTECTED]>**20061203173207] 
[fix more incompatible uses of DarcsRepo.
David Roundy <[EMAIL PROTECTED]>**20061203064355] 
[make replace work with hashed inventories.
David Roundy <[EMAIL PROTECTED]>**20061203055452] 
[Make get_tag test work with hashed inventories.
David Roundy <[EMAIL PROTECTED]>**20061203055019] 
[make directory_confusion pass with hashed inventories.
David Roundy <[EMAIL PROTECTED]>**20061203035551
 I'm not sure whether there is still a bug in the pending handling here, but
 at least it doesn't crash...
] 
[resolve conflicts
Tommy Pettersson <[EMAIL PROTECTED]>**20061117222757
 between 'clean up unrevert and pending handling'
 and 'ignore failure from hSetBufferin'
] 
[Resolve conflict in Resolution.lhs.
Eric Kow <[EMAIL PROTECTED]>**20061113032236
 
] 
[External resolution can resolve conflicting adds
[EMAIL PROTECTED] 
[Only copy files needed in external_resolution
[EMAIL PROTECTED] 
[change message in 'darcs check' from "applying" to "checking" (issue147)
Tommy Pettersson <[EMAIL PROTECTED]>**20061111154259] 
[update annotate for hashed inventories
Jason Dagit <[EMAIL PROTECTED]>**20061108033202
 Fixes test suite failure for annotate on a repository with hashed inventory.
] 
[make Get work with hashed inventory.
David Roundy <[EMAIL PROTECTED]>**20061101150901
 This is inefficient, but it uses only the pre-existing refactored
 functions, so it's the easiest approach.  Later we can write an efficient
 bit of code to do the same thing.
] 
[make darcs check use Repository framework.
David Roundy <[EMAIL PROTECTED]>**20060927024514] 
[fix parsing of hashed inventories.
David Roundy <[EMAIL PROTECTED]>**20060927024505] 
[put Repository in Show class for debugging ease.
David Roundy <[EMAIL PROTECTED]>**20060927021202] 
[add a bit of hashed inventory code.
David Roundy <[EMAIL PROTECTED]>**20060918173904] 
[resolve conflicts
Tommy Pettersson <[EMAIL PROTECTED]>**20061102184834
 Merge Unrecord fix for checkpoints inventory with Repository code refactoring.
] 
[Added --store-in-memory option for diff
[EMAIL PROTECTED]
 
] 
[Move RawMode into DarcsUtils to break cyclic imports on Win32
Josef Svenningsson <[EMAIL PROTECTED]>**20061004120024] 
[remove duplicate file names in fix_filepaths (fixes issue273)
Tommy Pettersson <[EMAIL PROTECTED]>**20060929145335] 
[add test for replace command with duplicated file name
Tommy Pettersson <[EMAIL PROTECTED]>**20060929144008] 
[Move bug reporting code to its own module.
Eric Kow <[EMAIL PROTECTED]>**20060928222826
 
 Fixes circular dependency caused by David's unrevert cleanup (which moves
 edit_file to DarcsUtil, thus causing it to depend on Exec) and Tommy's
 exec patches (which add impossible.h to Exec, thus causing it to depend
 on DarcsUtil).
 
] 
[clean up unrevert and pending handling.
David Roundy <[EMAIL PROTECTED]>**20060917214136] 
[Be explicit about timezone handling (issue220); assume local by default.
Eric Kow <[EMAIL PROTECTED]>**20060812102034
 
 Except for the local timezone in the user interface, this patch is not
 expected to change darcs's behaviour.  It merely makes current practice
 explicit:
 
 - Assume local timezone when parsing date strings from the user
   interface (previous behaviour was assuming UTC).
 
 - Assume UTC timezone when parsing date strings from PatchInfo.
   Newer patch date strings do *not* specify the timezone, so it
   would be prudent to treat these as UTC.
  
 - Disregard timezone information altogether when reading patch
   dates (issue220).  Note that this bug was not caused by assuming local
   timezone, because legacy patch date strings explicitly tell you what
   the timezone to use.  The bug was caused by a patch that fixed
   issue173 by using timezone information correctly.  To preserve
   backwards-compatability, we deliberatly replicate the incorrect
   behaviour of overriding the timezone with UTC.
   (PatchInfo.make_filename)
  
] 
[Account for timezone offset in cleanDate  (Fixes issue173).
Eric Kow <[EMAIL PROTECTED]>**20060610193049
 
] 
[Fix merge conflicts.
Juliusz Chroboczek <[EMAIL PROTECTED]>**20060906191317] 
[fix bug in pristine handling when dealing with multiple patches.
David Roundy <[EMAIL PROTECTED]>**20060731111404] 
[fix ordering of operations to call pull_first_middles properly.
David Roundy <[EMAIL PROTECTED]>**20060730111409] 
[fix bug in refactoring of get.
David Roundy <[EMAIL PROTECTED]>**20060726121655] 
[refactor Population.
David Roundy <[EMAIL PROTECTED]>**20060716034837] 
[add TODO for refactoring get_markedup_file.
David Roundy <[EMAIL PROTECTED]>**20060716034339] 
[partial refactoring in annotate.
David Roundy <[EMAIL PROTECTED]>**20060716034319] 
[don't use DarcsRepo in list_authors.
David Roundy <[EMAIL PROTECTED]>**20060716033450] 
[I've now eliminated need to export DarcsRepo.write_patch.
David Roundy <[EMAIL PROTECTED]>**20060716033109] 
[partially refactor Optimize.
David Roundy <[EMAIL PROTECTED]>**20060716032934] 
[partial refactoring of Get.
David Roundy <[EMAIL PROTECTED]>**20060716031605] 
[refactor amend-record.
David Roundy <[EMAIL PROTECTED]>**20060716021003] 
[add TODO to refactor unrevert handling.
David Roundy <[EMAIL PROTECTED]>**20060716020247] 
[refactor Unrecord, adding tentativelyRemovePatches.
David Roundy <[EMAIL PROTECTED]>**20060716015150] 
[refactor tag.
David Roundy <[EMAIL PROTECTED]>**20060716011853] 
[refactor Repository to allow truly atomic updates.
David Roundy <[EMAIL PROTECTED]>**20060716011245] 
[TAG darcs-unstable-20060831
Juliusz Chroboczek <[EMAIL PROTECTED]>**20060831191554] 
[Test pull.pl, CREATE_DIR_ERROR: removed TODO now that directory name is printed in error message
Marnix Klooster <[EMAIL PROTECTED]>**20060304164033
 Also removes a superfluous (and erroneous) chdir statement, which tried to
 change to non-existing directory templ (last character was ell instead of one).
 
 Also improves the description of this test.
] 
[TAG 1.0.9
Tommy Pettersson <[EMAIL PROTECTED]>**20070603213706] 
Patch bundle hash:
de982361805243d2ed9323098e4f64fbe66c6195
_______________________________________________
darcs-devel mailing list
darcs-devel@darcs.net
http://lists.osuosl.org/mailman/listinfo/darcs-devel

Reply via email to