summaryrefslogtreecommitdiff
path: root/doc/bugs
Commit message (Collapse)AuthorAge
* Reporting a bug.Gravatar aditya.mmy@be7b2fbd14a6ce2b6b8588f6719672725a11ed352017-08-27
|
* Added a commentGravatar michalrus2017-08-26
|
* (no commit message)Gravatar michalrus2017-08-26
|
* Added a commentGravatar michalrus2017-08-26
|
* Added a commentGravatar michalrus2017-08-26
|
* Added a commentGravatar michalrus2017-08-26
|
* removedGravatar michalrus2017-08-26
|
* Added a commentGravatar michalrus2017-08-26
|
* formattingGravatar Joey Hess2017-08-24
|
* bug from emailGravatar Joey Hess2017-08-24
|
* (no commit message)Gravatar loredai2017-08-23
|
* (no commit message)Gravatar loredai2017-08-23
|
* (no commit message)Gravatar loredai2017-08-23
|
* Added a comment: It's the old remote...Gravatar olaf2017-08-23
|
* Added a comment: Similar(ish) bug reportsGravatar olaf2017-08-23
|
* (no commit message)Gravatar olaf2017-08-23
|
* (no commit message)Gravatar olaf2017-08-23
|
* (no commit message)Gravatar olaf2017-08-23
|
* Added a comment: links on pageGravatar metst13@1d16544ec52801db7efb2895d3dc7a4458b8eb452017-08-22
|
* Added a commentGravatar Rémi2017-08-21
|
* (no commit message)Gravatar Rémi2017-08-21
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2017-08-20
|\
* | CVE-2017-12976Gravatar Joey Hess2017-08-20
| |
| * Added a commentGravatar michalrus2017-08-20
| |
| * Added a commentGravatar michalrus2017-08-20
| |
| * Added a commentGravatar michalrus2017-08-20
| |
| * (no commit message)Gravatar michalrus2017-08-20
| |
| * (no commit message)Gravatar michalrus2017-08-20
| |
| * (no commit message)Gravatar michalrus2017-08-20
| |
| * (no commit message)Gravatar doogie2017-08-18
| |
| * (no commit message)Gravatar doogie2017-08-18
| |
| * Added a comment: Exception: getCurrentDirectory:getWorkingDirectory: ↵Gravatar ilovezfs2017-08-18
|/ | | | resource exhausted (Too many open files)
* typoGravatar Joey Hess2017-08-18
|
* add bug for security hole, with exploit detailsGravatar Joey Hess2017-08-18
|
* git-annex.cabal: Deal with breaking changes in Cabal 2.0Gravatar Joey Hess2017-08-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://github.com/haskell/cabal/issues/4655 This means that when a module is conditionally imported via ifdef depending on the OS or build flags, the cabal file has to mirror the same logic there to only list the module then. Since there are lots of OS's and lots of combinations of build flags here, it's rather difficult to know if the cabal file has been completelty correctly updated to match the source code. So I am very unhappy with needing to update things in two places. I've only tested this on linux with most build flags enables; this will probably need significant time and testing to catch every cabal file tweak that this change to Cabal requires. And it will be a continual source of compile failures going forward when the code is modified and the cabal file not also updated. DRY DRY DRY, I repeat myself, but: DRY! Sigh.. (Also, had to remove all Build.* that are standalone programs from the Other-Modules list, because since cabal passes those modules to ghc when building git-annex, it complains that they use module Main. Those modules are only used when building with the Makefile anyway, so this change shouldn't break anything.) This commit was sponsored by Thomas Hochstein on Patreon.
* typoGravatar Joey Hess2017-08-17
|
* external: nice error message for keys with spaces in their nameGravatar Joey Hess2017-08-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | External special remotes will refuse to operate on keys with spaces in their names. That has never worked correctly due to the design of the external special remote protocol. Display an error message suggesting migration. Not super happy with this, but it's a pragmatic solution. Better than complicating the external special remote interface and all external special remotes. Note that I only made it use SafeKey in Request, not Response. git-annex does not construct a Response, so that would not add any safety. And presumably, if git-annex avoids feeding any such keys to an external special remote, it will never have a reason to make a Response using such a key. If it did, it would result in a protocol error anyway. There's still a Serializeable instance for Key; it's used by P2P.Protocol. There, the Key is always in the final position, so it's ok if it contains spaces. Note that the protocol documentation has been fixed to say that the File may contain spaces. One way that can happen, even though the Key can't, is when using direct mode, and the work tree filename contains spaces. When sending such a file to the external special remote the worktree filename is used. This commit was sponsored by Thom May on Patreon.
* commentGravatar Joey Hess2017-08-17
|
* Added a commentGravatar https://launchpad.net/~felixonmars2017-08-17
|
* planGravatar Joey Hess2017-08-17
|
* closeGravatar Joey Hess2017-08-17
|
* Added a commentGravatar https://openid.stackexchange.com/user/8a69a637-97cb-41e6-8f45-00f08ba54d6e2017-08-16
|
* Added a commentGravatar https://openid.stackexchange.com/user/8a69a637-97cb-41e6-8f45-00f08ba54d6e2017-08-16
|
* Added a commentGravatar https://openid.stackexchange.com/user/8a69a637-97cb-41e6-8f45-00f08ba54d6e2017-08-16
|
* (no commit message)Gravatar https://openid.stackexchange.com/user/8a69a637-97cb-41e6-8f45-00f08ba54d6e2017-08-16
|
* Added a commentGravatar olaf2017-08-16
|
* ideaGravatar Joey Hess2017-08-15
|
* hmmGravatar Joey Hess2017-08-15
|
* responses, bug I noticedGravatar Joey Hess2017-08-15
|
* Disable http-client's default 30 second response timeout when HEADing an url ↵Gravatar Joey Hess2017-08-15
| | | | to check if it exists. Some web servers take quite a long time to answer a HEAD request.