summaryrefslogtreecommitdiff
path: root/git-annex.cabal
Commit message (Collapse)AuthorAge
...
* | deal with network-uri split, in a backwards-compatable wayGravatar Joey Hess2014-09-13
| |
* | prep release5.20140831Gravatar Joey Hess2014-08-31
| |
| * update aws version requirementsGravatar Joey Hess2014-08-18
| |
* | fix lower bounds on version of exceptionsGravatar Joey Hess2014-08-17
| | | | | | | | | | | | This is needed only because of the new MonadMask needed for bracket in the new version. Ifdefing it everywhere is not practical, since the Setup.hs uses it.
* | prep release5.20140817Gravatar Joey Hess2014-08-17
| |
* | Switched from the old haskell HTTP library to http-conduit.Gravatar Joey Hess2014-08-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The hoary old HTTP library was only used when checking if an url exists, when curl was not available. It had many problems, including not supporting https at all. Now, this is done using http-conduit for all urls that it supports. Falls back to curl for any url that http-conduit doesn't like (probably ftp etc, but could also be an url that its parser chokes on for whatever reason). This adds a new dependency on http-conduit, but webdav support already indirectly depended on that, and the s3-aws branch also uses it. This opens up the possibility of using http-conduit for large file downloads, but for now I've left it using wget/curl. This commit was sponsored by Paul Tötterman.
| * Merge branch 'master' into s3-awsGravatar Joey Hess2014-08-15
| |\ | | | | | | | | | | | | Conflicts: git-annex.cabal
| | * Switched from the old haskell HTTP library to http-conduit.Gravatar Joey Hess2014-08-15
| |/ |/| | | | | | | | | | | | | | | | | | | | | | | The hoary old HTTP library was only used when checking if an url exists, when curl was not available. It had many problems, including not supporting https at all. Now, this is done using http-conduit for all urls that it supports. Falls back to curl for any url that http-conduit doesn't like (probably ftp etc, but could also be an url that its parser chokes on for whatever reason). This adds a new dependency on http-conduit, but webdav support already indirectly depended on that, and the s3-aws branch also uses it.
* | make windows depend on new enough unix-compat to get inode numbersGravatar Joey Hess2014-08-12
| |
| * depsGravatar Joey Hess2014-08-09
| |
| * WIP converting S3 special remote from hS3 to aws libraryGravatar Joey Hess2014-08-08
|/ | | | | | | | | | | | | | | Currently, initremote works, but not the other operations. They should be fairly easy to add from this base. Also, https://github.com/aristidb/aws/issues/119 blocks internet archive support. Note that since http-conduit is used, this also adds https support to S3. Although git-annex encrypts everything anyway, so that may not be extremely useful. It is not enabled by default, because existing S3 special remotes have port=80 in their config. Setting port=443 will enable it. This commit was sponsored by Daniel Brockman.
* http-conduit not used for davGravatar Joey Hess2014-08-08
|
* DAV version turns out to be 1.0.Gravatar Joey Hess2014-08-08
|
* need transformers for Utility.ExceptionGravatar Joey Hess2014-08-07
|
* unify exception handling into Utility.ExceptionGravatar Joey Hess2014-08-07
| | | | | | | | | | | | | | | | | | | | Removed old extensible-exceptions, only needed for very old ghc. Made webdav use Utility.Exception, to work after some changes in DAV's exception handling. Removed Annex.Exception. Mostly this was trivial, but note that tryAnnex is replaced with tryNonAsync and catchAnnex replaced with catchNonAsync. In theory that could be a behavior change, since the former caught all exceptions, and the latter don't catch async exceptions. However, in practice, nothing in the Annex monad uses async exceptions. Grepping for throwTo and killThread only find stuff in the assistant, which does not seem related. Command.Add.undo is changed to accept a SomeException, and things that use it for rollback now catch non-async exceptions, rather than only IOExceptions.
* webdav: reuse http connection when operating on the chunks of a fileGravatar Joey Hess2014-08-07
| | | | | | | | For both new and legacy chunks. Massive speed up! This commit was sponsored by Dominik Wagenknecht.
* use DAV monadGravatar Joey Hess2014-08-07
| | | | | | | | | | | | This speeds up the webdav special remote somewhat, since it often now groups actions together in a single http connection when eg, storing a file. Legacy chunks are still supported, but have not been sped up. This depends on a as-yet unreleased version of DAV. This commit was sponsored by Thomas Hochstein.
* testremote: New command to test uploads/downloads to a remote.Gravatar Joey Hess2014-08-01
| | | | | | | | | This only performs some basic tests so far; no testing of chunking or resuming. Also, the existing encryption type of the remote is used; it would be good later to derive an encrypted and a non-encrypted version of the remote and test them both. This commit was sponsored by Joseph Liu.
* WebDAV: Dropped support for DAV before 0.6.1.Gravatar Joey Hess2014-07-30
| | | | | 0.6.1 is in testing, and stable does not have DAV at all, so I can dispense with this compatability code
* prep releaseGravatar Joey Hess2014-07-17
|
* fix build with path-pieces-0.1.4Gravatar Joey Hess2014-07-13
|
* prep releaseGravatar Joey Hess2014-07-09
|
* network-conduit build dep in cabal was spuriious, remove5.20140707Gravatar Joey Hess2014-07-07
|
* prep releaseGravatar Joey Hess2014-07-07
|
* prep release5.20140613Gravatar Joey Hess2014-06-13
|
* Fix build with wai 0.3.0.Gravatar Joey Hess2014-06-11
| | | | | | | | | | This version of wai changed the type of Middleware, so I cannot seem to liftIO inside it. So, got rid of a lot of not really needed complexity to use System.Log.Logger's logging stuff, and just use the standard wai stdout logger when debug logging is enabled. Format may change some, and it logs http to stdout instead of stderr now. Doesn't matter for the webapp since both go to the same log anyway.
* prep release5.20140606Gravatar Joey Hess2014-06-06
|
* prep releaseGravatar Joey Hess2014-05-29
|
* lower bound on exceptionsGravatar Joey Hess2014-05-29
|
* Use exceptions in place of deprecated MonadCatchIO-transformersGravatar Ben Gamari2014-05-28
|
* prep releaseGravatar Joey Hess2014-05-17
|
* allow building with old feed lib, w/o pubdateGravatar Joey Hess2014-04-21
|
* prep releaseGravatar Joey Hess2014-04-20
|
* Avoid depending on shakespeare except for when building the webapp.Gravatar Joey Hess2014-04-13
|
* prep release5.20140412Gravatar Joey Hess2014-04-11
|
* prep releaseGravatar Joey Hess2014-04-11
|
* importfeed: Filename template can now contain an itempubdate variable. Needs ↵Gravatar Joey Hess2014-04-07
| | | | feed 0.3.9.2.
* fix missing shakespeare dependencyGravatar Gaëtan Lehmann2014-04-07
|
* prepping for a linux-only releaseGravatar Joey Hess2014-04-05
|
* try to avoid windows wanting to build dbusGravatar Joey Hess2014-04-02
|
* prep releaseGravatar Joey Hess2014-04-02
|
* byteable only needed for webapp-secureGravatar Joey Hess2014-03-26
|
* add desktop notificationsGravatar Joey Hess2014-03-22
| | | | | | | Motivation: Hook scripts for nautilus or other file managers need to provide the user with feedback that a file is being downloaded. This commit was sponsored by THM Schoemaker.
* prep releaseGravatar Joey Hess2014-03-20
|
* list changelog file in cabal file, should make it visible on hackageGravatar Joey Hess2014-03-20
|
* webapp: Use securemem for constant time auth token comparisons.Gravatar Joey Hess2014-03-12
| | | | | Debian stable does not have securemem, but neither does it have warp-tls, so just disable use of securemem when not building with https support.
* quick fix to build with old warp-tlsGravatar Joey Hess2014-03-12
| | | | | | | | Debian stable's warp-tls is too old to support the new https feature well, so only use http with that old version. Note that the webapp still depends on warp-tls, because the TLSSettings type is used.
* prep release5.20140306Gravatar Joey Hess2014-03-06
|
* depend on warp-tls.. at least for nowGravatar Joey Hess2014-02-28
|
* prep release5.20140227Gravatar Joey Hess2014-02-27
|