summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Added a comment: finally!Gravatar http://joeyh.name/2013-07-31
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2013-07-31
|\
* | make edits that a commenter apparently didn't realize they could make. this ↵Gravatar Joey Hess2013-07-31
| | | | | | | | is a wiki..
| * Added a commentGravatar http://joeyh.name/2013-07-31
| |
| * Added a commentGravatar http://joeyh.name/2013-07-31
| |
* | typoGravatar Joey Hess2013-07-31
| |
| * Added a comment: use the forceGravatar http://joeyh.name/2013-07-31
|/
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2013-07-31
|\
* | importfeed --force: re-download urls that have been seen beforeGravatar Joey Hess2013-07-31
| |
| * Added a commentGravatar https://www.google.com/accounts/o8/id?id=AItOawln3ckqKx0x_xDZMYwa9Q1bn4I06oWjkog2013-07-31
| |
| * Added a commentGravatar https://www.google.com/accounts/o8/id?id=AItOawnRai_qFYPVvEgC6i1nlM1bh-C__jbhqS02013-07-31
| |
| * Added a commentGravatar Remy2013-07-31
| |
| * Added a comment: checkpresent success and failureGravatar https://www.google.com/accounts/o8/id?id=AItOawnWvnTWY6LrcPB4BzYEBn5mRTpNhg5EtEg2013-07-31
| |
| * (no commit message)Gravatar https://www.google.com/accounts/o8/id?id=AItOawmicVKRM8vJX4wPuAwlLEoS2cjmFXQkjkE2013-07-31
| |
| * Added a comment: Please be more specific about what information goes into ↵Gravatar https://www.google.com/accounts/o8/id?id=AItOawmicVKRM8vJX4wPuAwlLEoS2cjmFXQkjkE2013-07-31
| | | | | | | | the key
| * Added a comment: Force a reload of a feed?Gravatar ckeen2013-07-31
| |
| * Added a commentGravatar https://www.google.com/accounts/o8/id?id=AItOawlpSOjMH7Iaz56v6Pr9KCFSpbvMXvg-y9o2013-07-31
| |
| * (no commit message)Gravatar https://www.google.com/accounts/o8/id?id=AItOawkfHTPsiAcHEEN7Xl7WxiZmYq-vX7azxFY2013-07-31
| |
| * Added a comment: seems to workGravatar https://www.google.com/accounts/o8/id?id=AItOawkfHTPsiAcHEEN7Xl7WxiZmYq-vX7azxFY2013-07-31
| |
| * Added a commentGravatar https://www.google.com/accounts/o8/id?id=AItOawknruiCHUcOh2mmpkh7OFJ4iNfAOOamRVs2013-07-31
| |
| * (no commit message)Gravatar https://www.google.com/accounts/o8/id?id=AItOawln3ckqKx0x_xDZMYwa9Q1bn4I06oWjkog2013-07-31
|/
* find: Avoid polluting stdout with progress messages. Closes: #718186Gravatar Joey Hess2013-07-30
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2013-07-30
|\
* | Fix a few bugs involving filenames that are at or near the filesystem's ↵Gravatar Joey Hess2013-07-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | maximum filename length limit. Started with a problem when running addurl on a really long url, because the whole url is munged into the filename. Ended up doing a fairly extensive review for places where filenames could get too large, although it's hard to say I'm not missed any.. Backend.Url had a 128 character limit, which is fine when the limit is 255, but not if it's a lot shorter on some systems. So check the pathconf() limit. Note that this could result in fromUrl creating different keys for the same url, if run on systems with different limits. I don't see this is likely to cause any problems. That can already happen when using addurl --fast, or if the content of an url changes. Both Command.AddUrl and Backend.Url assumed that urls don't contain a lot of multi-byte unicode, and would fail to truncate an url that did properly. A few places use a filename as the template to make a temp file. While that's nice in that the temp file name can be easily related back to the original filename, it could lead to `git annex add` failing to add a filename that was at or close to the maximum length. Note that in Command.Add.lockdown, the template is still derived from the filename, just with enough space left to turn it into a temp file. This is an important optimisation, because the assistant may lock down a bunch of files all at once, and using the same template for all of them would cause openTempFile to iterate through the same set of names, looking for an unused temp file. I'm not very happy with the relatedTemplate hack, but it avoids that slowdown. Backend.WORM does not limit the filename stored in the key. I have not tried to change that; so git annex add will fail on really long filenames when using the WORM backend. It seems better to preserve the invariant that a WORM key always contains the complete filename, since the filename is the only unique material in the key, other than mtime and size. Since nobody has complained about add failing (I think I saw it once?) on WORM, probably it's ok, or nobody but me uses it. There may be compatability problems if using git annex addurl --fast or the WORM backend on a system with the 255 limit and then trying to use that repo in a system with a smaller limit. I have not tried to deal with those. This commit was sponsored by Alexander Brem. Thanks!
| * Added a comment: /storage/sdcard1/.git/annex/daemon.logGravatar https://www.google.com/accounts/o8/id?id=AItOawnaH44G3QbxBAYyDwy0PbvL0ls60XoaR3Y2013-07-30
| |
| * Added a commentGravatar http://joeyh.name/2013-07-30
| |
| * Added a commentGravatar http://joeyh.name/2013-07-30
| |
| * Added a comment: Great stuff!Gravatar http://www.joachim-breitner.de/2013-07-30
| |
| * fixed typoGravatar http://www.joachim-breitner.de/2013-07-30
|/
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2013-07-30
|\
| * Added a commentGravatar http://joeyh.name/2013-07-30
| |
* | blog for the dayGravatar Joey Hess2013-07-30
| |
* | regression test for 043672e11448516b70c0bea789f94fd3d5e16910Gravatar Joey Hess2013-07-30
| |
* | Improve test suite on Windows; now tests git annex sync.Gravatar Joey Hess2013-07-30
| |
| * Added a commentGravatar http://mebus.pip.verisignlabs.com/2013-07-30
| |
| * Added a commentGravatar cehteh2013-07-30
| |
| * Added a commentGravatar http://joeyh.name/2013-07-30
| |
| * (no commit message)Gravatar https://www.google.com/accounts/o8/id?id=AItOawnw1nskuzEP9crBqxTa6d1R24mnTfA-j1A2013-07-30
| |
| * Added a comment: fixedGravatar http://joeyh.name/2013-07-30
|/
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2013-07-30
|\
* | Fix inverted logic in last release's fix for data loss bug, that caused ↵Gravatar Joey Hess2013-07-30
| | | | | | | | git-annex sync on FAT or other crippled filesystems to add symlink standin files to the annex.
| * Added a commentGravatar http://joeyh.name/2013-07-30
| |
| * Added a commentGravatar http://joeyh.name/2013-07-30
| |
| * Added a comment: re: workaroundGravatar http://joeyh.name/2013-07-30
|/
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2013-07-30
|\
| * Added a commentGravatar http://joeyh.name/2013-07-30
| |
* | OSX: Make git-annex-webapp run in the background, so that the app icon can ↵Gravatar Joey Hess2013-07-30
| | | | | | | | be clicked on the open a new webapp when the assistant is already running.
| * Added a comment: log fileGravatar https://www.google.com/accounts/o8/id?id=AItOawnaH44G3QbxBAYyDwy0PbvL0ls60XoaR3Y2013-07-30
| |
| * Added a commentGravatar https://www.google.com/accounts/o8/id?id=AItOawnRai_qFYPVvEgC6i1nlM1bh-C__jbhqS02013-07-30
| |
| * Added a commentGravatar http://joeyh.name/2013-07-30
| |