Sun Oct 12 01:41:48 CEST 2008  [EMAIL PROTECTED]
  * cleanup default boring
  
  Also turn default_boring and default_binaries into (pure) CAFs.
New patches:

[cleanup default boring
[EMAIL PROTECTED]
 
 Also turn default_boring and default_binaries into (pure) CAFs.
] hunk ./src/Darcs/Repository/Prefs.lhs 69
 
 \begin{code}
 write_default_prefs :: IO ()
-write_default_prefs = do sequence_ [default_boring, default_binaries]
-                         set_preflist "motd" []
+write_default_prefs = mapM_ (uncurry set_preflist) [
+    ("boring", default_boring),
+    ("binaries", default_binaries),
+    ("motd", [])
+  ]
 \end{code}
 
 \paragraph{repos}
hunk ./src/Darcs/Repository/Prefs.lhs 131
 
 \begin{code}
 {-# NOINLINE default_boring #-}
-default_boring :: IO ()
-default_boring = set_preflist "boring" $ "# Boring file regexps:" :
-                 ["\\.hi$", "\\.hi-boot$", "\\.o-boot$", -- Haskell interfaces
-                  "\\.o$","\\.o\\.cmd$", -- object files
-                  "\\.p_hi$", "\\.p_o$", -- profiling Haskell
-                  "\\.tix$", -- Haskell Program Coverage
-                  "\\.mod$", -- FORTRAN module files
-                  "\\.installed-pkg-config", "\\.setup-config",
-                  "\\.setup-config", -- Cabal intermediates
+default_boring :: [String]
+default_boring = ["# Boring file regexps:",
+                  "",
+                  "### compiler and interpreter intermediate files",
+                  "# haskell (ghc) interfaces",
+                  "\\.hi$", "\\.hi-boot$", "\\.o-boot$",
+                  "# object files",
+                  "\\.o$","\\.o\\.cmd$",
+                  "# profiling haskell",
+                  "\\.p_hi$", "\\.p_o$",
+                  "# haskell program coverage",
+                  "\\.tix$",
+                  "# fortran module files",
+                  "\\.mod$",
+                  "# linux kernel modules",
+                  "\\.ko\\.cmd$","\\.mod\\.c$",
                   "# *.ko files aren't boring by default because they might",
hunk ./src/Darcs/Repository/Prefs.lhs 148
-                  "# be Korean translations rather than kernel modules.",
+                  "# be Korean translations rather than kernel modules",
                   "# \\.ko$",
hunk ./src/Darcs/Repository/Prefs.lhs 150
-                  "\\.ko\\.cmd$","\\.mod\\.c$",
-                  "(^|/)\\.tmp_versions($|/)",
-                  "(^|/)CVS($|/)","\\.cvsignore$", -- CVS
-                  "^\\.#",              -- CVS, Emacs locks
-                  "(^|/)RCS($|/)", ",v$", -- RCS
-                  "(^|/)\\.svn($|/)",   -- Subversion admin directory
-                  "(^|/)\\.hg($|/)", -- Mercurial
-                  "(^|/)\\.git($|/)", -- Git
-                  "\\.bzr$", "(^|/)SCCS($|/)", -- bzr, SCCS
-                  "~$",                 -- Emacs (and other) backups
-                  "(^|/)"++darcsdir++"($|/)", "(^|/)\\.darcsrepo($|/)", -- darcs admin directory
-                  "\\.bak$","\\.BAK$",  -- editor backups(?)
-                  "\\.orig$", "\\.rej$", -- patch originals and rejects
-                  "(^|/)vssver\\.scc$",
-                  "\\.swp$","(^|/)MT($|/)",
-                  "(^|/)\\{arch\\}($|/)","(^|/).arch-ids($|/)", -- GNU Arch
-                  "(^|/),","\\.prof$","(^|/)\\.DS_Store$",
-                  "(^|/)BitKeeper($|/)","(^|/)ChangeSet($|/)",
-                  -- Python, Emacs, Java byte code:
+                  "# python, emacs, java byte code",
                   "\\.py[co]$", "\\.elc$","\\.class$",
hunk ./src/Darcs/Repository/Prefs.lhs 152
-                  -- Compiled ZSH configuration files
+                  "# objects and libraries; lo and la are libtool things",
+                  "\\.(obj|a|exe|so|lo|la)$",
+                  "# compiled zsh configuration files",
                   "\\.zwc$",
hunk ./src/Darcs/Repository/Prefs.lhs 156
-                  -- Gentoo tools can leave revdep files behind
+                  "# Common LISP output files for CLISP and CMUCL",
+                  "\\.(fas|fasl|sparcf|x86f)$",
+                  "",
+                  "### build and packaging systems",
+                  "# cabal intermediates",
+                  "\\.installed-pkg-config",
+                  "\\.setup-config",
+                  "# standard cabal build dir, might not be boring for everybody",
+                  "# ^dist(/|$)",
+                  "# autotools",
+                  "(^|/)autom4te\\.cache($|/)", "(^|/)config\\.(log|status)$",
+                  "# microsoft web expression, visual studio metadata directories",
+                  "\\_vti_cnf$",
+                  "\\_vti_pvt$",
+                  "# gentoo tools",
                   "\\.revdep-rebuild.*",
hunk ./src/Darcs/Repository/Prefs.lhs 172
-                  -- X server spam
+                  "# generated dependencies",
+                  "^\\.depend$",
+                  "",
+                  "### version control systems",
+                  "# cvs",
+                  "(^|/)CVS($|/)","\\.cvsignore$",
+                  "# cvs, emacs locks",
+                  "^\\.#",
+                  "# rcs",
+                  "(^|/)RCS($|/)", ",v$",
+                  "# subversion",
+                  "(^|/)\\.svn($|/)",
+                  "# mercurial",
+                  "(^|/)\\.hg($|/)",
+                  "# git",
+                  "(^|/)\\.git($|/)",
+                  "# bzr",
+                  "\\.bzr$",
+                  "# sccs",
+                  "(^|/)SCCS($|/)",
+                  "# darcs",
+                  "(^|/)"++darcsdir++"($|/)", "(^|/)\\.darcsrepo($|/)",
+                  "^\\.darcs-temp-mail$",
+                  "-darcs-backup[[:digit:]]+$",
+                  "# gnu arch",
+                  "(^|/)vssver\\.scc$",
+                  "\\.swp$","(^|/)MT($|/)",
+                  "(^|/)\\{arch\\}($|/)","(^|/).arch-ids($|/)",
+                  "# bitkeeper",
+                  "(^|/)BitKeeper($|/)","(^|/)ChangeSet($|/)",
+                  "",
+                  "### miscellaneous",
+                  "# backup files",
+                  "~$","\\.bak$","\\.BAK$",
+                  "# patch originals and rejects",
+                  "\\.orig$", "\\.rej$",
+                  "# X server",
                   "\\..serverauth.*",
hunk ./src/Darcs/Repository/Prefs.lhs 210
-                  -- Image spam
+                  "# image spam",
                   "\\#", "(^|/)Thumbs\\.db$",
hunk ./src/Darcs/Repository/Prefs.lhs 212
-                  -- autotools stuff:
-                  "(^|/)autom4te\\.cache($|/)", "(^|/)config\\.(log|status)$",
-                  "^\\.depend$",        -- generated dependencies
-                  "(^|/)(tags|TAGS)$",  -- vi, Emacs tags
+                  "# vi, emacs tags",
+                  "(^|/)(tags|TAGS)$",
                   "#(^|/)\\.[^/]",
hunk ./src/Darcs/Repository/Prefs.lhs 215
-                  "(^|/|\\.)core$",     -- core dumps
-                  -- objects and libraries; lo and la are libtool things
-                  "\\.(obj|a|exe|so|lo|la)$",
-                  "^\\.darcs-temp-mail$", -- darcs editor file
-                  "-darcs-backup[[:digit:]]+$", -- merge conflict backups
-                  -- Common LISP output files for CLISP and CMUCL
-                  "\\.(fas|fasl|sparcf|x86f)$",
-                  "\\.part$", -- partial broken files (KIO copy operations)
-                  -- WAF files. ( http://code.google.com/p/waf/ )
+                  "# core dumps",
+                  "(^|/|\\.)core$",
+                  "# partial broken files (KIO copy operations)",
+                  "\\.part$",
+                  "# waf files, see http://code.google.com/p/waf/";,
                   "(^|/)\\.waf-[[:digit:].]+-[[:digit:]]+($|/)",
                   "(^|/)\\.lock-wscript$",
hunk ./src/Darcs/Repository/Prefs.lhs 222
-                  "^\\.darcs-temp-mail$", -- darcs editor file
-                  -- Microsoft Web Expression, Visual Studio metadata directories
-                  "\\_vti_cnf$",
-                  "\\_vti_pvt$"
-                  ]
+                  "# ???",
+                  "(^|/)\\.tmp_versions($|/)",
+                  "(^|/),","\\.prof$","(^|/)\\.DS_Store$" ]
 
 darcsdir_filter :: [FilePath] -> [FilePath]
 darcsdir_filter = filter (not.is_darcsdir)
hunk ./src/Darcs/Repository/Prefs.lhs 297
 \begin{code}
 data FileType = BinaryFile | TextFile
                 deriving (Eq)
+
 {-# NOINLINE default_binaries #-}
hunk ./src/Darcs/Repository/Prefs.lhs 299
-default_binaries :: IO ()
+default_binaries :: [String]
 default_binaries =
hunk ./src/Darcs/Repository/Prefs.lhs 301
-    set_preflist "binaries" $ "# Binary file regexps:" :
-                 ext_regexes ["png","gz","pdf","jpg","jpeg","gif","tif",
-                              "tiff","pnm","pbm","pgm","ppm","bmp","mng",
-                              "tar","bz2","z","zip","jar","so","a",
-                              "tgz","mpg","mpeg","iso","exe","doc",
-                              "elc", "pyc"]
+    "# Binary file regexps:" :
+    ext_regexes ["png","gz","pdf","jpg","jpeg","gif","tif",
+                 "tiff","pnm","pbm","pgm","ppm","bmp","mng",
+                 "tar","bz2","z","zip","jar","so","a",
+                 "tgz","mpg","mpeg","iso","exe","doc",
+                 "elc", "pyc"]
     where ext_regexes exts = concat $ map ext_regex exts
           ext_regex e = ["\\."++e++"$", "\\."++map toUpper e++"$"]
 
hunk ./src/Darcs/Repository/Prefs.lhs 359
   if hasprefs
     then get_lines f
     else return []
+
 set_preflist p ls = withPrefsDirectory $ \prefs -> do
   haspref <- mDoesDirectoryExist $ fp2fn prefs
   if haspref

Context:

[Fix spurious diff and missing cd in diff test.
Eric Kow <[EMAIL PROTECTED]>**20081008192142
 
 If tests are run in parallel, each instance of the diff test may
 attempt to create temporary directories for use by darcs diff.
 Darcs itself handles this fine; only the test script gets confused
 by the spurious difference that results.
] 
[Help the test harness clean to up after tests.
Eric Kow <[EMAIL PROTECTED]>**20081008190340
 A typical use case is if a test sets restrictive permissions
 and dies.  Notes:
 * we do this after each test so that one test result doesn't
   contaminate others
 * we explicitly do /not/ remove these temporary directories
   because you may want them around for forensics
] 
[Minor refactor in URL.urlThread.
Dmitry Kurochkin <[EMAIL PROTECTED]>**20081010071649
 Ignore-this: 809d750f10adc8073ebe0dd3d432f2a2
] 
[clean up code formatting in Hopefully.
David Roundy <[EMAIL PROTECTED]>**20081010144943
 Ignore-this: 65a4dbb17505adbc0c0c615c445a8926
] 
[clean up unused exports in Hopefully.
David Roundy <[EMAIL PROTECTED]>**20081010144918
 Ignore-this: a016b66fd64f756295555255b268e80a
] 
[haddock documentation for Hopefully
[EMAIL PROTECTED] 
[resolve issue1062: ignore setCooked and setEcho errors.
Eric Kow <[EMAIL PROTECTED]>**20081010122047
 Ignore-this: 2f8c8710faefdcdb6b224244995a00af
 The issue in question is only about setCooked.
 I presume setEcho can similarly fail.
] 
[add missing createLink to win32/System/Posix/Files.hsc.
David Roundy <[EMAIL PROTECTED]>**20081010133500
 Ignore-this: 39d246ab1db8c31f78e0b8362ad05ca3
] 
[make make_changelog default to quiet output.
David Roundy <[EMAIL PROTECTED]>**20081009203322
 Ignore-this: 55eba7a68a3c8a5683d23cc99848bd6f
 You can restore previous behavior by defining the VERBOSE environment
 variable.
] 
[remove unused and unneeded Workarounds.
David Roundy <[EMAIL PROTECTED]>**20081009194541
 Ignore-this: bca5a7a2444d4ddffeed673cbbfa19ec
] 
[rename lazy-deps to dont-prompt-for-dependencies.
David Roundy <[EMAIL PROTECTED]>**20081009171030
 Ignore-this: 78393e28c184c9339c89cecaa852dbc9
] 
[basic tests for --lazy-deps
Florent Becker <[EMAIL PROTECTED]>**20081008124956
 Ignore-this: 79d8a312943813e9fe5448bc2ab86aa0
] 
[added a --lazy-deps option
Florent Becker <[EMAIL PROTECTED]>**20081008122224
 Ignore-this: d934868e56f0084067f5aedf0512a533
 This option means that you don't get asked about patches which do not match
 a --match, but are depended upon by a patch that does. These patches will get
 ilently selected. 
 
] 
[refactor of SelectChanges
Florent Becker <[EMAIL PROTECTED]>**20081008100551
 Ignore-this: e620d36d6e52eb62a2205fe5122d7076
] 
[rewrite push_coalesce_patch to avoid calls to lengthFL.
David Roundy <[EMAIL PROTECTED]>**20080924161517
 Ignore-this: cf746702c3b1e06ab2d400878e20e305
] 
[change a bit of code to accept FilePathLike arguments.
David Roundy <[EMAIL PROTECTED]>**20081008172047
 Ignore-this: 87032e071bb49117133d99a90bdfd0e1
 These functions really should expect FileName, and this is an
 incremental move in that direction.
] 
[Implement Commands.Check in terms of Repository.Repair functionality.
[EMAIL PROTECTED] 
[Implement Commands.Repair in terms of Repository.Repair functionality.
[EMAIL PROTECTED] 
[Export testTentative from Darcs.Repository.
[EMAIL PROTECTED] 
[Implement Repository.Repair to provide primitives for check and repair commands.
[EMAIL PROTECTED] 
[keep changepref patches from breaking the toSimple optimization.
David Roundy <[EMAIL PROTECTED]>**20080924162022
 Ignore-this: 404a4386b048b74dd9afcdde47bc1b11
] 
[make various autoconf simplifications.
David Roundy <[EMAIL PROTECTED]>**20080923150742
 Ignore-this: 213c53eda0b54c01909c8d15b2a5fdd6
] 
[Translate merging_newlines bug into shell and restore bug context.
Eric Kow <[EMAIL PROTECTED]>**20081005085031
 
 This used to be a TODO item at the end of the merging_newlines
 test, but when it was moved out, the actions required to set up
 a bug were forgotten.  This patch restores those actions.
] 
[Remove residual Perlisms in match-date.
Eric Kow <[EMAIL PROTECTED]>**20081005000324] 
[Use example.com in external.pl tests.
Eric Kow <[EMAIL PROTECTED]>**20080928082407
 This avoids timing out in some DNS lookup.  When I first wrote this
 test, I did not know that RFC2606 has reserved example.{com,net,org}
 which seems to be useful in precisely this situation.
] 
[fix incorrect merging_newlines.sh test.
David Roundy <[EMAIL PROTECTED]>**20081004223547
 Ignore-this: 33ebc10cd54112ec101750dd6c75fdf9
] 
[Move merging_newlines test to bugs and add a simpler version.
Eric Kow <[EMAIL PROTECTED]>**20081004135724
 
 There are two issues I noticed when converting this Perl test into
 shell.  This test was passing, but I made some mistakes translating it,
 and in doing so, noticed two potential bugs.
 
 The first is a potentially hidden conflict.  If we start from
 a file
   from temp1
   <EOF>
 And then it seems that a change which adds an empty line should
 conflict with a change that adds a line with content.
 
 The second is that if you do omit the newline, as the original
 test does,
   from temp1<EOF>
 you get some strange-looking changes, namely that appending a
 line to this yields two addline changes and not one.
] 
[Restore send-external.sh test.
David Roundy <[EMAIL PROTECTED]>**20081009140121
 Ignore-this: 700f9c538033108cac397c1d757fbfc4
] 
[use minimum Cachable time in corner case where f/=f' and c/=c'.
David Roundy <[EMAIL PROTECTED]>**20081008173804
 Ignore-this: 51f2a68ac4139420bd116e8293cc5cc2
] 
[add test of Ignore-this functionality.
David Roundy <[EMAIL PROTECTED]>**20081008192621
 Ignore-this: 47b7bf225e2997dd78c351763c769738
] 
[warn users if they try to record a change beginning with Ignore-this:.
David Roundy <[EMAIL PROTECTED]>**20081008192001
 Ignore-this: 94828726d609f46e384c2ab8091e49db
 Ignore-this: I am testing the functionality of this feature.
] 
[allow users to add their own ignored information to patches.
David Roundy <[EMAIL PROTECTED]>**20081008190038
 Ignore-this: fe8294776896b6fdcd489752a29d1069
] 
[remove excessive indentation that made the code very hard to read.
David Roundy <[EMAIL PROTECTED]>**20081008173358
 Ignore-this: d93e312c27f0d9a1ef993855c6872257
] 
[When requesting same URL with different cachability choose least cachable.
Dmitry Kurochkin <[EMAIL PROTECTED]>**20081008145049
 Ignore-this: fddacf3e706a68c55871f81438d283b
] 
[Improve test pull.sh cleanup
Thorkil Naur <[EMAIL PROTECTED]>**20081008115539] 
[Allow dist command to take a tag argument (issue 286).
Stephen Hicks <[EMAIL PROTECTED]>**20081006075133
 It should probably be a "match_one_context" instead of a "match_one"
 option type, and then instead of using the "nonranged" matcher, we'd
 use the "patchset" ones (that don't exist yet).  But I couldn't figure
 out how to blend "get_nonrange_match" and "get_one_patchset" in any
 sensical way to get immediate pristine output (and all the more so for
 the "_s" variants).  So for now, contexts are not supported, but it
 would be nice if they were someday.
] 
[clean up RepoPath a bit (removing unused methods from classes).
David Roundy <[EMAIL PROTECTED]>**20081008161906
 Ignore-this: 4e69882ebe10f20bb67350b106bd10af
] 
[clean up exportation of SlurmMonad private internals.
David Roundy <[EMAIL PROTECTED]>**20081008151758
 Ignore-this: 3763cc352b6f28fa83d8fbe5b1077985
] 
[Optimize clean_hashdir's use of cleanCaches.
Petr Rockai <[EMAIL PROTECTED]>**20081007191237
 
 We now only ask cleanCaches to look at files we have unlinked and therefore
 might have caused their cached equivalents to drop link-count to 1. Limits
 number of stats to O(n), n = number of cleaned out files.
] 
[partial haddock documentation of Arguments.lhs
Florent Becker <[EMAIL PROTECTED]>**20081007131122] 
[mv nfs-failure test to the bugs/ folder, since it fails.
David Roundy <[EMAIL PROTECTED]>**20081005130112
 Ignore-this: 73c6e55558233f1b56d7ff51f327f454
] 
[Translate some Perl bugs into shell.
Eric Kow <[EMAIL PROTECTED]>**20081005084157] 
[Translate date matching test to shell.
Eric Kow <[EMAIL PROTECTED]>**20081005000243] 
[Translate some more Perl tests into shell.
Eric Kow <[EMAIL PROTECTED]>**20081004163850
 Shell equivalents already exist for these particular tests,
 but they may not do the same thing.
] 
[Move non-date-matching code out of match.pl
Eric Kow <[EMAIL PROTECTED]>**20081004145445
 The goal is to minimise and eventually eliminate our use of Perl
 for regression tests.
] 
[Fix minor bug in conflict-doppelganger test.
Eric Kow <[EMAIL PROTECTED]>**20081004163746
 It does not account for --old-fashioned-inventory being
 in .darcs/defaults
] 
[Update tests to reflect --darcs-2 default.
Eric Kow <[EMAIL PROTECTED]>**20080925143252
 We need to explicitly say --old-fashioned-inventory to test
 accordingly.
] 
[Translate some more Perl tests into shell.
Eric Kow <[EMAIL PROTECTED]>**20081004092507] 
[remove -q from diff in test, not supported on solaris
Tommy Pettersson <[EMAIL PROTECTED]>**20081003205756] 
[Translate some Perl tests into shell.
Eric Kow <[EMAIL PROTECTED]>**20081003183746] 
[Convert tag.pl test into shell.
Eric Kow <[EMAIL PROTECTED]>**20081003095231] 
[make default_boring and default_binaries NOINLINE
David Roundy <[EMAIL PROTECTED]>**20081001202731
 Ignore-this: f74741738a612bb283d1e871d70aa492
 This is primarily so I won't have to recompile all of darcs when these
 change, but also because they shouldn't be inlined.  It would just be
 a waste of space (and would slow down darcs).
] 
[fix bug in 1105 fix that led to improper overrides of defaults
David Roundy <[EMAIL PROTECTED]>**20081001175907
 Ignore-this: 8413d2596f97076ccb096900585f0c62
 The problem is illustrated in the tests/override-defaults.sh that I've
 recorded separately.  We want conflicting defaults in
 ~/.darcs/defaults and _darcs/prefs/defaults to be resolved in favor of
 the default residing in _darcs/prefs/defaults.
] 
[add test that overriding of defaults works right.
David Roundy <[EMAIL PROTECTED]>**20081001175645
 Ignore-this: aedfd923676b1fa35c25c72abb88c8f3
] 
[Test for issue1105.
Dmitry Kurochkin <[EMAIL PROTECTED]>**20080929142205
 Ignore-this: 5b7c2f7d270ab614eb1294566048a586
] 
[Resolve issue1105: check if default options are valid.
Dmitry Kurochkin <[EMAIL PROTECTED]>**20080929141948
 Ignore-this: 17b4b27e31545689f21496f7fc9c9fe7
] 
[Restore 'simplify patches in rollback'.
Eric Kow <[EMAIL PROTECTED]>**20080926225429] 
[Restore issue27 patches.
Eric Kow <[EMAIL PROTECTED]>**20080926222522
 
 rolling back:
 
 Fri Sep 26 23:01:19 BST 2008  Eric Kow <[EMAIL PROTECTED]>
   * Resolve issue1102: recognise but do not generate patch log 'junk'.
   
] 
[TAG 2.1.0
Eric Kow <[EMAIL PROTECTED]>**20081009120532] 
[Rollback send-external test.
Eric Kow <[EMAIL PROTECTED]>**20081009101224
 I was over-optimistic about pulling this into stable.
 It fails under Windows.
 
 rolling back:
 
 Tue Oct  7 23:28:04 BST 2008  David Roundy <[EMAIL PROTECTED]>
   * add test for send --sendmail-command.
 
     A ./tests/send-external.sh
] 
[ChangeLog entries for 2.1.0 (tweaks).
Eric Kow <[EMAIL PROTECTED]>**20081009090247] 
[disable tests/issue1078_symlink.sh on Windows
[EMAIL PROTECTED]
 (Windows does not have symlinks.)
] 
[Bump version number to 2.1.0.
Eric Kow <[EMAIL PROTECTED]>**20081008203033] 
[Canonize Benjamin Franksen.
Eric Kow <[EMAIL PROTECTED]>**20081008202951] 
[ChangeLog entries for darcs 2.1.0.
Eric Kow <[EMAIL PROTECTED]>**20081008202927] 
[haddock documentation for Printer
[EMAIL PROTECTED] 
[Use copyFile+renameFile for safe copy in URL.waitNextUrl.
Dmitry Kurochkin <[EMAIL PROTECTED]>**20081008134308
 Ignore-this: a9a8889c2b57a5dca2785344cbd18a2f
] 
[add simple test of interactive record.
David Roundy <[EMAIL PROTECTED]>**20081008172036
 Ignore-this: ebb01acdb477174095e1b66aac230629
] 
[resolve issue1124: Test pull.sh failed when run as root
Thorkil Naur <[EMAIL PROTECTED]>**20081008114134] 
[Resolve issue1131: accept download requests for different files.
Dmitry Kurochkin <[EMAIL PROTECTED]>**20081008113040
 Ignore-this: a45dc4c336f87a61bda3b3c96a8656fa
] 
[add test for send --sendmail-command.
David Roundy <[EMAIL PROTECTED]>**20081007222804
 Ignore-this: f84bb43f50a6a07e0cddde739b602e6a
] 
[Nicer bug output (it was missing a space).
Eric Kow <[EMAIL PROTECTED]>**20081007155214] 
[haddock documentation for ColorPrinter
[EMAIL PROTECTED] 
[disable progress reports when connecting to an ssh server.
David Roundy <[EMAIL PROTECTED]>**20081002215119
 Ignore-this: 5088b46719072abcecf0c8c406b8f6d7
] 
[Resolve issue1109: stop progress reports in exec_interactive.
Dmitry Kurochkin <[EMAIL PROTECTED]>**20081002125805
 Ignore-this: 2938508e82322b41fb9e18db4ee4ceba
] 
[Resolve issue1104: stop progress reports in exec.
Dmitry Kurochkin <[EMAIL PROTECTED]>**20081002130157
 Ignore-this: 40bd4c27fd600f6dbcc3f89a62db9104
] 
[fix tab in Replace that broke haskell-policy.sh test.
David Roundy <[EMAIL PROTECTED]>**20081006171036
 Ignore-this: c02875410986f3e2e48da0da19333311
] 
[hint about replace --force [issue864]
Tommy Pettersson <[EMAIL PROTECTED]>**20081005160640] 
[Add a toolbox.sh to tests
Eric Kow <[EMAIL PROTECTED]>**20081004202139
 Like template.sh, this is not a real test, but just helper
 code for writing tests.  The toolbox just provides a single
 place you can go to look up how to do things.
] 
[fixed accidental merge of two lines in default boring; removed pattern for directory "dist"
[EMAIL PROTECTED] 
[resolve issue1128: must call execSendmail inside body of withOpenTemp
[EMAIL PROTECTED] 
[fix issue966 test, use better temp dir name, and start clean
Tommy Pettersson <[EMAIL PROTECTED]>**20081005000117] 
[fix wrong ../path in failing issue1013 test
Tommy Pettersson <[EMAIL PROTECTED]>**20081004140200] 
[mv issue1111 to tests/
David Roundy <[EMAIL PROTECTED]>**20081004143649
 Ignore-this: 51683a80094a4d7733a31b4a40e94016
] 
[resolve issue1111: patchset_intersection used wrong selection for partitionRL
Tommy Pettersson <[EMAIL PROTECTED]>**20081004123851
 We want to commute the non-common patches away, so we can stick the
 remaining common patches to the rest of the common patch set.
] 
[use longer patch names in issue1111 test for safer grep result
Tommy Pettersson <[EMAIL PROTECTED]>**20081003230323
 The 'not grep C out' found the author--date line of patch A, which
 contained my timezone (CEST), so the test failed even when it should have
 succeeded.
] 
[The pager defaults to less(1), not more(1)
Matthias Kilian <[EMAIL PROTECTED]>**20081003212319
 
 It would be better to change get_viewer in Darcs/Utils.lhs to default
 to more(1), but since this may be too intrusive for the upcoming
 release, just let the manual tell the truth (i.e., we're using
 less(1) by default).
 
] 
[Fix cd bugs in conflict-doppleganger test.
Eric Kow <[EMAIL PROTECTED]>**20081004094407
 We were not always exiting from darcs repositories when we
 meant to.
] 
[fix test issue1110, remove duplicates of cd ..
Tommy Pettersson <[EMAIL PROTECTED]>**20081003182126
 They got us out of the test dir, up in the file tree hierarchy, to the
 darcs root dir, and beyond, where the test continued to run test commands
 and cleanups (ooops!!)
] 
[Add a shell test template.
Eric Kow <[EMAIL PROTECTED]>**20081003095005
 This provides helper functions and a basic repository
 setup.  The idea is that when making a new shell test,
 you start by making a copy of the template.
] 
[Reformat Darcs.CommandsAux comments as haddock.
Eric Kow <[EMAIL PROTECTED]>**20080927123217] 
[haddock documentation for ColorPrinter
Tommy Pettersson <[EMAIL PROTECTED]>**20081003175214] 
[only  show 'diffing dir' when debugging.
David Roundy <[EMAIL PROTECTED]>**20081001134124
 Ignore-this: 277810d9083e36b42f27fa7ac4c47386
] 
[TAG 2.1.0pre3
Eric Kow <[EMAIL PROTECTED]>**20081002091241] 
Patch bundle hash:
1d12988ea8e4fbf28ba628deddab33d02825b783
_______________________________________________
darcs-users mailing list
[email protected]
http://lists.osuosl.org/mailman/listinfo/darcs-users

Reply via email to