Adolfo Builes <builes.ado...@googlemail.com> added the comment:

1 patch for repository http://darcs.net:

Tue Aug 10 17:33:30 COT 2010  builes.ado...@googlemail.com
  * Add environment variable DARCS_CONNECTION_TIMEOUT

__________________________________
Darcs bug tracker <b...@darcs.net>
<http://bugs.darcs.net/patch336>
__________________________________
New patches:

[Add environment variable DARCS_CONNECTION_TIMEOUT
builes.ado...@googlemail.com**20100810223330
 Ignore-this: eb2c3ec6d3ebf8d2994a9ee8841d80fe
] hunk ./src/hscurl.c 152
   if (easy == NULL)
     return error_strings[RESULT_EASY_INIT_FAIL];
 
+  error = set_time_out(easy);
+  if (error != CURLE_OK){
+    return curl_easy_strerror(error);
+  }
+
   if (debug)
     {
       error = curl_easy_setopt(easy, CURLOPT_VERBOSE, 1);
hunk ./src/hscurl.c 284
       CURL *easy = msg->easy_handle;
       CURLcode result = msg->data.result;
       struct UrlData *url_data;
-      int error = curl_easy_getinfo(easy, CURLINFO_PRIVATE, (char **)&url_data);
+
+      int error = set_time_out(easy);
+      if (error != CURLE_OK){
+        *errorCode = error;
+        return curl_easy_strerror(error);
+      }
+
+      error = curl_easy_getinfo(easy, CURLINFO_PRIVATE, (char **)&url_data);
       if (error != CURLE_OK){
         *errorCode = error;
         return curl_easy_strerror(error);
hunk ./src/hscurl.c 336
   return 0;
 #endif
 }
+
+int set_time_out(CURL *handle)
+{
+  int error;
+  long time_out = 30;
+  const char *stime_out;
+
+  stime_out = getenv("DARCS_CONNECTION_TIMEOUT");
+  if (stime_out != NULL){
+    long result = atol (stime_out);
+    if ( result > 0 )
+      time_out = result;
+  }
+
+  error = curl_easy_setopt(handle, CURLOPT_TIMEOUT, time_out);
+
+  return error;
+}
hunk ./src/hscurl.h 13
 
 int curl_pipelining_enabled();
 
+int set_time_out();
+

Context:

[remove redundant imports in Patchy and Real
Jason Dagit <da...@codersbase.com>**20100807160837
 Ignore-this: 2babfb43cb1f340876ae9ce914c1a454
] 
[fix conflict in Bundle
Jason Dagit <da...@codersbase.com>**20100807160542
 Ignore-this: 1bdbe27903b8f464838ab97b9c3df12f
] 
[remove try combinator from ReadMonads
Jason Dagit <da...@codersbase.com>**20100807160342
 Ignore-this: 80bb069e6744788d69d8cec5eb1a438a
] 
[micro optimizations to parser code
Jason Dagit <da...@codersbase.com>**20100807160148
 Ignore-this: 876d06693dca962b60f9a81740978765
 These micro-optimizations should always be safe; prefering ByteString
 over String and reducing packing/unpacking.
] 
[remove all uses of try from parser code
Jason Dagit <da...@codersbase.com>**20100807153421
 Ignore-this: 904f9415cf9b0a7f773a6b9b7b099007
] 
[ReadMonads no longer exports maybeWork fix other modules to match
Jason Dagit <da...@codersbase.com>**20100725175120
 Ignore-this: 437b41f08ca584d3ce0fc45cae7f207d
] 
[refactor Read to not rely on 'work'
Jason Dagit <da...@codersbase.com>**20100725163359
 Ignore-this: c2ed2d0babfff2a22c3cb3918dcac78a
] 
[ReadMonads no longer exports myLex, clean up imports in Real
Jason Dagit <da...@codersbase.com>**20100725144618
 Ignore-this: 7e305152e13b0a6b175c04e49ea1bd5
] 
[refactor Read to use myLex'
Jason Dagit <da...@codersbase.com>**20100725144403
 Ignore-this: aa7f97c4f2661d96615294add1ced7f8
] 
[ReadMonads no longer exports alterInput and clean up a few warnings
Jason Dagit <da...@codersbase.com>**20100725142911
 Ignore-this: 429ca05040f2ff94f7cbbde595f2b5de
] 
[cleanup import list of Patchy
Jason Dagit <da...@codersbase.com>**20100725141855
 Ignore-this: 7b096029f7c4521e924a619d09752515
] 
[remove peekInput from Real.  peekInput no longer exported from ReadMonads
Jason Dagit <da...@codersbase.com>**20100725141605
 Ignore-this: c49bf70941372ba9241f13f088371f5c
] 
[refactor Patchy to not use peekInput
Jason Dagit <da...@codersbase.com>**20100725135658
 Ignore-this: 853181469c09b52a5b8628a2f0dc8546
] 
[refactor Read and ReadMonads to remove peekInput from Read
Jason Dagit <da...@codersbase.com>**20100725133132
 Ignore-this: 787c8b8f3b5584472cfa4f83db671fde
] 
[add utility functions to ReadMonads
Jason Dagit <da...@codersbase.com>**20100725120651
 Ignore-this: 16edfdb6bb5c8c24600865854263e897
 The intention of these functions is that in the future we will be able
 to use more conventional notation to express parsers in the darcs source.
] 
[tune the patch parser
Jason Dagit <da...@codersbase.com>**20100725085610
 Ignore-this: 869bb399d759f19b1a2fdbb466743d17
 This patch is based on a few observations:
   * alterInput (const foo), completly replaces the parser's input
   * after peekInput, the above trick avoids redundant processing
   * best to leave a packed ByteString packed
] 
[Resolve issue1908: try to create a global cache before checking its availability.
Petr Rockai <m...@mornfall.net>**20100808122419
 Ignore-this: a93e6f5d4a1272fc49341236820a9833
] 
[Add a "buildbot-try" script to contrib that submits local changes to buildbot.
Petr Rockai <m...@mornfall.net>**20100808133328
 Ignore-this: 96e90b4581df1f297f423611d64c7
] 
[Skip testing of issue1599 on old-fashioned repos.
Petr Rockai <m...@mornfall.net>**20100808123648
 Ignore-this: 2bfa977b37c63dc22c8024994197d0af
] 
[Test for issue1599: expire unused caches
builes.ado...@googlemail.com**20100807211143
 Ignore-this: 8b77c20113c6b1d18019810ff7e11c3d
] 
[Fail more verbosely in issue1879-same-patchinfo-uncommon.sh.
Petr Rockai <m...@mornfall.net>**20100808105641
 Ignore-this: 88665b641ab15527c37c39b1bd78a772
] 
[Also set binary mode on stderr (we already had stdin/stdout).
Petr Rockai <m...@mornfall.net>**20100808095353
 Ignore-this: a3c37a0fb16fd27da1f47ee101d07295
] 
[Do not fail when there's debris in tests directory.
Petr Rockai <m...@mornfall.net>**20100807192133
 Ignore-this: d1fdf93fbed39e3a20bb8d4129dbd4d4
] 
[Resolve issue1530: allow user to pick from multiple email address.
Eric Kow <ko...@darcs.net>**20100718113353
 Ignore-this: 531e6c9498f9155c1a8f926ee56a68e3
 If your global authors pref has more than one line in it, Darcs will
 prompt you something like:
 
   You have saved the following email addresses to your global settings:
   1. Fred Bloggs <f...@example.net>
   2. Fred Bloggs <f...@home.example.tld>
   3. BLOGGS Fred <fblo...@example.com>
   4. Other
   Please select an email address for this repository. 
] 
[Helper Darcs.Utils.askUserListItem to select from an arbitrary list.
Eric Kow <ko...@darcs.net>**20100718112610
 Ignore-this: 1583cecc95940234ea5703b01094afcb
] 
[Restyle issue1873 test and make it run in darcs 2.4.
Eric Kow <ko...@darcs.net>**20100807171741
 Ignore-this: 32d1c90bbb45ab91fd3803dc513bc751
 Just to confirm the regression...
] 
[Add test for issue1873 (failed to read patch during apply).
Petr Rockai <m...@mornfall.net>**20100807163013
 Ignore-this: 2396ff7f429204f6f10079fb32799e32
] 
[Resolve issue1873: give nicer error when apply fails due to missing patches.
Petr Rockai <m...@mornfall.net>**20100804204010
 Ignore-this: b3ddfddeaa7e089717256aa2344ba78c
] 
[Rename findCommonAndUncommon to findUncommon (it does not find common).
Petr Rockai <m...@mornfall.net>**20100804195738
 Ignore-this: 8257db493418179be45fad17ab6ffd8e
] 
[Add a simple test for http get with packs.
Petr Rockai <m...@mornfall.net>**20100804190930
 Ignore-this: cab6334359dbf54c3087e0619d8af4b4
] 
[Add a simple non-network test for darcs get over http.
Petr Rockai <m...@mornfall.net>**20100804190927
 Ignore-this: c3545fe52f79ce9ae720499e381f3823
] 
[Resolve issue 1599: automatically expire unused caches
builes.ado...@googlemail.com**20100807003339
 Ignore-this: c12f0cd04794e2db03445b71815b9e3a
] 
[resolve issue1896: enable witnesses for library
Ganesh Sittampalam <gan...@earth.li>**20100721053731
 Ignore-this: 5209e15b5d2c446eea5df2fe1fe700b5
] 
[Undo an edit to the issue1829 test, since the original was clearer.
Petr Rockai <m...@mornfall.net>**20100806131253
 Ignore-this: 925c73124e2b3d17239ccb7c47578f19
] 
[Add a test for issue1829 by Ganesh & Ian.
Petr Rockai <m...@mornfall.net>**20100806125230
 Ignore-this: 7e11a7b4b54f189e1864952ff048f0fb
] 
[Cut functions Darcs.Utils.putStrLnError and putDocLnError.
Eric Kow <ko...@darcs.net>**20100718102621
 Ignore-this: 92c29385add92fb7b875342842432b5a
] 
[Tidy Darcs.Utils exports.
Eric Kow <ko...@darcs.net>**20100718101900
 Ignore-this: 78740886b92947d941f0e3baa86ba3f2
] 
[switch homepage to two-column format ala xmonad.org
Guillaume Hoffmann <guilla...@gmail.com>**20100805134439
 Ignore-this: 21fa11e338fd9064b526f96c2f5be12
] 
[Remove a couple of redundant type variables from foralls.
Petr Rockai <m...@mornfall.net>**20100806085630
 Ignore-this: 552924bfd0cf15cd9c5922a88ae282f9
] 
[Accept issue1290: darcs diff --index support.
Eric Kow <ko...@darcs.net>**20100805124559
 Ignore-this: 560bf7125a441de79f0939e5851b95ed
] 
[Fix missing type signature in Darcs.Arguments.
Eric Kow <ko...@darcs.net>**20100726134237
 Ignore-this: 8f69ae4defc489d4a4ec9c5734fa2376
] 
[Fix warnings in Darcs.Repository.State.
Eric Kow <ko...@darcs.net>**20100723134611
 Ignore-this: 5a7c4a33c95ba3285721d0ade56adf1b
] 
[Fix warnings in Darcs.Repository.InternalTypes.
Eric Kow <ko...@darcs.net>**20100723134556
 Ignore-this: 66a361e0ff4b1a0c616fb11dafc6467c
] 
[Fix warnings in Darcs.Repository.HashedIO.
Eric Kow <ko...@darcs.net>**20100723134533
 Ignore-this: af2a60a5bf64d53240dc4498696c7a42
] 
[Fix warnings in Darcs.Repository.DarcsRepo.
Eric Kow <ko...@darcs.net>**20100723134515
 Ignore-this: 66f45d925ab9a7bce4c6e69ded8803fe
] 
[Fix warnings in Darcs.Patch.Prim.
Eric Kow <ko...@darcs.net>**20100723134501
 Ignore-this: dfd3b36b4b07e6de3b558073ac6bbe27
] 
[Fix redundant import warning in Darcs.Patch.Patchy.
Eric Kow <ko...@darcs.net>**20100723134447
 Ignore-this: 3fa7ffaf1b8098c4c0793c3ccc5ecb36
] 
[Fix redundant imports in Darcs.Patch.Commute.
Eric Kow <ko...@darcs.net>**20100723133540
 Ignore-this: 1c6919da737a8fd265a5dde9e94bbf35
] 
[Fix shadow warning in Darcs.Patch.Choices.
Eric Kow <ko...@darcs.net>**20100723133357
 Ignore-this: 88183e55fcac7c9fa2372f35decf643f
] 
[Fix redundant imports in Darcs.Patch.Apply.
Eric Kow <ko...@darcs.net>**20100723133239
 Ignore-this: dbf30f383e7a0684ca2b9cf9dcd50fb7
 Likely due to setScriptsExecutable refactor.
] 
[Fix RemoteDarcs related imports warning in Darcs.Flags and Darcs.RemoteApply.
Eric Kow <ko...@darcs.net>**20100723132408
 Ignore-this: f944bbc547fa4f8e1a70c8c3539ce6bc
] 
[Fix deprecation warning on GHC.Handle in Exec module.
Eric Kow <ko...@darcs.net>**20100723131847
 Ignore-this: 12a57c2a78af7d2c6428ec544cd09f98
 It looks like it was deprecated in GHC 6.12 along with the
 Unicode-oriented rewrite.
] 
[Resolve issue1892: Improve safety of makeBundle* and fix a couple of related bugs.
Petr Rockai <m...@mornfall.net>**20100715093842
 Ignore-this: 9eaa26edfdda09ac444f124130b9e74b
] 
[Re-enable packs and optimize --http.
Petr Rockai <m...@mornfall.net>**20100804185357
 Ignore-this: f86b0ea0c1008dbd173c7b8145be6803
] 
[Minimize the number of packed inventories
Alexey Levan <exle...@gmail.com>**20100802035445
 Ignore-this: 1f3d28bece5b29d599ea97be9bba5424
] 
[Use cache while getting a packed repository
Alexey Levan <exle...@gmail.com>**20100802024914
 Ignore-this: 33e44bdfce82d89fd243e7d628ce2c34
] 
[Hardlink files while getting a packed repository
Alexey Levan <exle...@gmail.com>**20100801050349
 Ignore-this: 8e6aa73b3a0cc84812d44beaaea701dd
] 
[Export usageHelper
Joachim Breitner <m...@joachim-breitner.de>**20100803173150
 Ignore-this: 763398f4ab6b99a59de7666940103daa
 usage is darcs-specific, while usageHelper is not. ipatch could use
 usageHelper.
] 
[Add pronoun to english module
builes.ado...@googlemail.com**20100803131432
 Ignore-this: 707096c1b8c9d0328524cb85ea76193e
] 
[Make Darcs.RunCommand independent of Darcs.Commands.Help
Joachim Breitner <m...@joachim-breitner.de>**20100803165917
 Ignore-this: 744025a59cdd9ad52595b65d989a638a
 by passing commandControlList via main.hs. This allows re-use of
 Darcs.RunCommand by other binaries with a different set of commands.
] 
[Handle English nouns that end in y.
builes.ado...@googlemail.com**20100724172717
 Ignore-this: 49eed82e5949fc0d8e7d2775e9fd50c0
] 
[Remove unused imports in Darcs.Commands.Changes
Reinier Lamers <tux_roc...@reinier.de>**20100802181249
 Ignore-this: 87d2c72fc74e4442f146d896296fb0db
] 
[Resolve issue1888: fix changes --context.
Petr Rockai <m...@mornfall.net>**20100729185143
 Ignore-this: eed1a926b468492198547c438a85e2c9
] 
[Make the "error applying hunk" error a lot more readable (and useful).
Petr Rockai <m...@mornfall.net>**20100727215711
 Ignore-this: d748d2632528d8e95453cb8cab76cd67
] 
[Haddock promptYorn.
Eric Kow <ko...@darcs.net>**20100718092334
 Ignore-this: 35ea778f5a5e44b8fb08a1b340b6b8a0
] 
[Add header to issue1790 test and make it follow convention more.
Eric Kow <ko...@darcs.net>**20100728142928
 Ignore-this: 29e6d64c5f3089ff6b7e081da5f853a4
] 
[Accept issue1790: darcs send --context foo
Eric Kow <ko...@darcs.net>**20100728142602
 Ignore-this: cd5d7f148d32ddbcea8d8cbb2282c2ea
 Submitted by Loup Vaillant.
] 
[Modernise System.Cmd import in Distribution.ShellHarness.
Eric Kow <ko...@darcs.net>**20100725220631
 Ignore-this: a785da33c6089635da687a9bfe957c2b
] 
[Disable optimize --http for Darcs 2.5 release.
Eric Kow <e.y....@brighton.ac.uk>**20100726111249
 Ignore-this: 92b75e71ac3041eee76762bf8042b02c
] 
[Disable packs for darcs 2.5.
Eric Kow <e.y....@brighton.ac.uk>**20100724155438
 Ignore-this: 3b9a6e7b3bede56651a5f6f1b728cfb5
 The packs feature is not sufficiently stable for release.
] 
[Restore looking for version number in exact-version context dump.
Eric Kow <ko...@darcs.net>**20100726114810
 Ignore-this: e18459c582c12c2e77b630f096f66190
 
 rolling back:
 
 Sun Jul 11 13:08:54 BST 2010  Reinier Lamers <tux_roc...@reinier.de>
   * Don't look for version number in exact-version context dump
 
 Petr says it masks a bug in the release tarballs.
] 
[resolve issue1716: allow mail header lines of all whitespace in test
Reinier Lamers <tux_roc...@reinier.de>**20100722191846
 Ignore-this: 24a12e1cf2631b5363636cf32cf5e8da
   
 Reading RFC822, it seems all-whitespace lines are allowed in the header section
 when you've got trailing space that doesn't fit on the line before.
] 
[rename readPatchIds to better describe what it does
Jason Dagit <da...@codersbase.com>**20100723064832
 Ignore-this: aa207726cbe8894aab41c17bd01ee6ca
] 
[move readPatchIds to Darcs.Patch.Info
Jason Dagit <da...@codersbase.com>**20100723064511
 Ignore-this: 53f620c0f5ffda0ffd82693c27a70235
] 
[remove duplicate code, readPatchIds
Jason Dagit <da...@codersbase.com>**20100723063526
 Ignore-this: a1950afa8385b04aa9c03435e4c152cb
] 
[Slightly fix context generation in Setup.
Petr Rockai <m...@mornfall.net>**20100722111410
 Ignore-this: eb3b6637f24d62332c9452a3c4143f39
] 
[Fix "head: empty list" bug in Darcs.Flags.RemoteDarcs.
Petr Rockai <m...@mornfall.net>**20100715123140
 Ignore-this: fa172627824eb3937cad63223026db9e
] 
[Remove [DarcsFlag] usage from Darcs.Patch.Bundle.
Petr Rockai <m...@mornfall.net>**20100715081908
 Ignore-this: 62297671dea56fdc0a1cac42f79d6d29
] 
[Use Compression more widely, suppressing further [DarcsFlag] uses.
Petr Rockai <m...@mornfall.net>**20100715003449
 Ignore-this: d582d3bc381e73a964127aa3b87d0ffb
] 
[Replace some [DarcsFlag] uses with newly introduced RemoteDarcs.
Petr Rockai <m...@mornfall.net>**20100715003320
 Ignore-this: d018b8c9b328228b9d283b7ad824eb15
] 
[Remove --nolinks, since its scope and usefulness is very limited.
Petr Rockai <m...@mornfall.net>**20100715000822
 Ignore-this: 71427fcd09e59d5e4f443bcc4e5ca649
] 
[resolve issue1893: move fields of conditional builds within scope of condition
Ganesh Sittampalam <gan...@earth.li>**20100716192642
 Ignore-this: 5eb1c376138534dd55190e06be701588
 This helps to work around a bug/misfeature in Cabal where it collects up
 things like build-depends without looking at whether the thing they apply
 to is actually buildable
 
] 
[Restore set-scripts-executable in trackdown --bisect.
Eric Kow <ko...@darcs.net>**20100717124222
 Ignore-this: efa2e2bba8227542b5a63933f0748c9d
 Note: Petr Rockai originally submitted this work as an amendment to
 'Remove [DarcsFlag] parameters from apply.', but I must have
 accidentally pushed the first version before he sent it.  This patch
 has the same effect as his amendment.
] 
[Remove [DarcsFlag] parameters from apply.
Petr Rockai <m...@mornfall.net>**20100715002249
 Ignore-this: 707f8193561ce890dc6ed91d1001253b
] 
[Remove [DarcsFlag] argument from unrecordedChanges.
Petr Rockai <m...@mornfall.net>**20100714155059
 Ignore-this: 4ba064584b4846b0ca26f6e3199a955a
] 
[Fix up tests to refer to --name instead of --patch-name.
Petr Rockai <m...@mornfall.net>**20100715102618
 Ignore-this: 630cc96d79db0ee7af9c93fa3dbf5f15
] 
[Resolve issue1883: rename --patch-name option to --name.
Eric Kow <ko...@darcs.net>**20100715101608
 Ignore-this: 85ab2f1e23f8b561b323a9dfb94baa55
 This is usually used in darcs record in shorthand (-m) form.
 This rename is aimed at eliminating the confusion with the --patch
 matcher, which bites amend-record and rollback users.
] 
[Update link to Darcs repository browser.
Eric Kow <ko...@darcs.net>**20100713174550
 Ignore-this: 3546359aec588d1262d6335b033331d0
] 
[get rid of join_patches
Ganesh Sittampalam <gan...@earth.li>**20100712165037
 Ignore-this: f9a5ca3dcc690e3c1ed9f6778b07f542
] 
[stop using join_patches in Darcs.Test.Unit
Ganesh Sittampalam <gan...@earth.li>**20100712165031
 Ignore-this: 563bbbd15f9f51cdfc8063b9dd7f8b0b
] 
[move main unit testing code into module with proper name (not Main)
Ganesh Sittampalam <gan...@earth.li>**20100707180600
 Ignore-this: 9c44b4ab083ba44afc9ecaf0752cd130
 This is enable other things than the unit executable to import it
 
] 
[Fix haddock error.
Eric Kow <ko...@darcs.net>**20100712145740
 Ignore-this: 2e41b55e17020543744a06ef57cdc599
 The main problem is that bug is a cpp macro, which gets expanded out.
 We just work around this for now.
] 
[Avoid a haddock parse error.
Eric Kow <ko...@darcs.net>**20100712142926
 Ignore-this: 97dc0a40b82f9360d374917e243e0490
] 
[Resolve issue1887: add a missing newline to --list-options output.
Petr Rockai <m...@mornfall.net>**20100711193535
 Ignore-this: 912b18e8f89be19d186332f5f98a8083
] 
[Fix conflict in Distribution.ShellHarness.
Eric Kow <ko...@darcs.net>**20100712132814
 Ignore-this: bfde365cf2d74b05d29ed457b5382f46
 Was between extended test defaults and Control.OldException removal.
] 
[Fix tests in light of recent default flag changes.
Petr Rockai <m...@mornfall.net>**20100708195100
 Ignore-this: b8764f2105ed6e7870f4853041b90f9e
] 
[Correctly handle conflicts arising from DarcsMutuallyExclusive options.
Petr Rockai <m...@mornfall.net>**20100708194904
 Ignore-this: b6607175899ad6f63044adae7442fd6d
] 
[Avoid adding noCache twice to parameter lists.
Petr Rockai <m...@mornfall.net>**20100708195014
 Ignore-this: 59cf4dc50edb4c08367cbc29f321e431
] 
[Make --no-cache an advanced option in all commands.
Eric Kow <ko...@darcs.net>**20100701161428
 Ignore-this: 99ea6f8e2235bfdab407a1af9fcfb5cc
] 
[Do not set default repo by default in push, pull, send, fetch.
Eric Kow <ko...@darcs.net>**20100701160352
 Ignore-this: 611fe6db2e2fe4d6ad70758d4dfb63de
 As discussed during the 2010-03 sprint and documented in
 http://wiki.darcs.net/DefaultSwitches
] 
[Express --{no-,}set-default as a mutually exclusive option.
Eric Kow <ko...@darcs.net>**20100701160138
 Ignore-this: 189522de144a9b9b81239f4a5ff545f0
] 
[Make --edit-description the default.
Eric Kow <ko...@darcs.net>**20100701155253
 Ignore-this: ed99469237da51949d915a8dda13706e
] 
[Express --{no-,}edit-description as a mutually exclusive option.
Eric Kow <ko...@darcs.net>**20100701155045
 Ignore-this: 419cc3945f89953e33400172d51453e9
] 
[Add a notion of mutually exclusive options with a default.
Eric Kow <ko...@darcs.net>**20100701155041
 Ignore-this: e3a29afebe21c9ec6ce355040260e8b
] 
[General purpose function for setting defaults.
Eric Kow <ko...@darcs.net>**20100701151816
 Ignore-this: d76a09aa70eba9694d3649300ef7720d
] 
[Fix use of atomicOptions in Darcs.ArgumentDefaults.
Eric Kow <ko...@darcs.net>**20100701144916
 Ignore-this: 4fc1df15e34b5c63c47e4c12c4f5963
] 
[Update optimizeHTTP for new two-layer DarcsOption.
Eric Kow <ko...@darcs.net>**20100701142543
 Ignore-this: d892c6787ba0aa93a0b36c1e7a79b756
] 
[Refactor traversal of atomic options in DarcsOption.
Eric Kow <ko...@darcs.net>**20100621003601
 Ignore-this: 9425a65b80f075e684fd7edaf9b5b868
] 
[Better use of Data.Maybe helpers in Darcs.Arguments.
Eric Kow <ko...@darcs.net>**20100621002200
 Ignore-this: 46feb16524e1d61495a7ead46cce1e55
] 
[Flatten DarcsOption type.
Eric Kow <ko...@darcs.net>**20100621001926
 Ignore-this: 34a3e0c2a9e989f0f35774d742607c93
 Distinguish between DarcsAtomicOptions and DarcsOption.
] 
[Fix missing type signature.
Eric Kow <ko...@darcs.net>**20100701153511
 Ignore-this: a0669588aca19f0c45326c1244e1c766
] 
[Rename optionFromDarcsoption to optionFromDarcsOption.
Eric Kow <ko...@darcs.net>**20100621000207
 Ignore-this: d1c5a5cb84264a404b9b07c9094f96aa
] 
[Fix test issue1865-get-context.sh
Thorkil Naur <n...@post11.tele.dk>**20100711121938
 Ignore-this: c68995d55efb6095ada7c24ce0909716
] 
[remove redundant and accidentally checked in definition
Ganesh Sittampalam <gan...@earth.li>**20100709214141
 Ignore-this: d8ad150be87b467f92721c8079158541
] 
[remove dead code
Ganesh Sittampalam <gan...@earth.li>**20100708055640
 Ignore-this: 86104cf3f14952869be820f66f156fbb
] 
[fix warning
Ganesh Sittampalam <gan...@earth.li>**20100707061818
 Ignore-this: 4b9e468819689cfc768befa8eabe4a4f
] 
[standardize GHC options
Ganesh Sittampalam <gan...@earth.li>**20100707180210
 Ignore-this: b088f0ece12b86980225d81b37d89251
] 
[fix unused variable warning
Ganesh Sittampalam <gan...@earth.li>**20100707065338
 Ignore-this: b2a8e05c985912a78dc71748361271b1
] 
[fix name shadowing warning
Ganesh Sittampalam <gan...@earth.li>**20100707065303
 Ignore-this: 79ab8367f22333f79f66e82d5f631dac
] 
[rename field names to avoid shadowing warnings
Ganesh Sittampalam <gan...@earth.li>**20100707062714
 Ignore-this: 6be53f3ee1ef4915bdd722153b0675e0
] 
[fix unused code warning
Ganesh Sittampalam <gan...@earth.li>**20100707062701
 Ignore-this: 3475bca718b26e5056c3ad7448a346dc
] 
[fix shadowing warnings
Ganesh Sittampalam <gan...@earth.li>**20100707062324
 Ignore-this: 45d7d142735754357e7b9c53eb2c25df
] 
[fix warning
Ganesh Sittampalam <gan...@earth.li>**20100707062320
 Ignore-this: 33b1a5f0d5895f04257e4eb133addfc5
] 
[fix warning
Ganesh Sittampalam <gan...@earth.li>**20100707062315
 Ignore-this: ad3da11afad97816fcd832baf25c311f
] 
[remove dead code
Ganesh Sittampalam <gan...@earth.li>**20100707062309
 Ignore-this: a3462879709597df56cf28d239b71eef
] 
[add comment about why we're using a deprecated option
Ganesh Sittampalam <gan...@earth.li>**20100707061805
 Ignore-this: eb1ec29ce345f96689d39f8f9638987c
] 
[stop using Control.OldException in Setup.lhs + deps
Ganesh Sittampalam <gan...@earth.li>**20100707060932
 Ignore-this: ab49b67e05941402304aed3a8b55f52f
] 
[TAG 2.4.98.1
Reinier Lamers <tux_roc...@reinier.de>**20100711120953
 Ignore-this: 6955d46fb3e48bc5bb0f622e495eae1f
] 
Patch bundle hash:
21be63f237b00224d83de4e3a493253bebe7876e

Attachment: unnamed
Description: Binary data

_______________________________________________
darcs-users mailing list
darcs-users@darcs.net
http://lists.osuosl.org/mailman/listinfo/darcs-users

Reply via email to