summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* releasing version 3.201109023.20110902Gravatar Joey Hess2011-09-02
|
* avoid showing json lists of remotes when not in json modeGravatar Joey Hess2011-09-02
|
* rsync and wget use stderr for progress, so no problemGravatar Joey Hess2011-09-01
|
* close bug with some caveatsGravatar Joey Hess2011-09-01
|
* add json formatted list of remotesGravatar Joey Hess2011-09-01
| | | | | Wherever a list of remotes is shown, --json now enables a json formatted list.
* basic json supportGravatar Joey Hess2011-09-01
| | | | | | | | | | | | | | | | | | This includes a generic JSONStream library built on top of Text.JSON (somewhat hackishly). It would be possible to stream out a single json document describing all actions, but it's probably better for consumers if they can expect one json document per line, so I did it that way instead. Output from external programs used for transferring files is not currently hidden when outputting json, which probably makes it not very useful there. This may be dealt with if there is demand for json output for --get or --move to be parsable. The version, status, and find subcommands have hand-crafted output and don't do json. The whereis subcommand needs to be modified to produce useful json.
* generalize quiet flag to output typeGravatar Joey Hess2011-09-01
| | | | This will allow adding other styles of output.
* add explanation for why strictness is needed hereGravatar Joey Hess2011-08-31
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2011-08-31
|\
* | unused --remote: Reduced memory use to 1/4th what was used before.Gravatar Joey Hess2011-08-31
| | | | | | | | | | | | | | Using a single strictness annotation, in just the right place. Tried several others, none of which helped and some of which potentially hurt. This is only the second time I've really had to deal with this in a year of using haskell, which is, I suppose not that bad.
| * (no commit message)Gravatar http://jefferai.org/2011-08-30
| |
* | unused, status: Sped up by avoiding unnecessary stats of annexed files.Gravatar Joey Hess2011-08-30
|/ | | | | | | | Statting files returned by dirContents to see if they exist and are regular files seems pretty useless. This code was originally part of fsck, and perhaps the idea then was to avoid things returned by dirContents that were not files. But it's certianly not needed in the current use cases for getKeysPresent.
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2011-08-30
|\
* | smudge update: Not practical.Gravatar Joey Hess2011-08-30
| |
* | tweakGravatar Joey Hess2011-08-30
| |
| * Added a commentGravatar http://www.schleptet.net/~cfm/2011-08-30
|/
* link to patchGravatar Joey Hess2011-08-29
|
* update; showstopper issue with current gitGravatar Joey Hess2011-08-29
| | | | developed a patch for git, we'll see if they like it..
* init: Make description an optional parameter.Gravatar Joey Hess2011-08-29
|
* updateGravatar Joey Hess2011-08-29
|
* closeGravatar Joey Hess2011-08-29
|
* update to not overstate the danger or WORMGravatar Joey Hess2011-08-29
|
* Added a commentGravatar http://joey.kitenet.net/2011-08-29
|
* (no commit message)Gravatar cwg2011-08-29
|
* (no commit message)Gravatar cwg2011-08-29
|
* update documentation for new, neutered key-value backendsGravatar Joey Hess2011-08-28
| | | | | | | | | | | Backends are now only used to generate keys (and check them); they are not arbitrary key-value stores for data, because it turned out such a store is better modeled as a special remote. Updated docs to not imply backends do more than they do now. Sometimes I'm tempted to rename "backend" to "keytype" or something, which would really be more clear. But it would be an annoying transition for users, with annex.backends etc.
* factor out firstM and anyMGravatar Joey Hess2011-08-28
| | | | Control.Monad.Loops has these, but has no Debian package yet.
* guess not everyone configures their shell to show nonzero exit codes..Gravatar Joey Hess2011-08-27
|
* The wget command will now be used in preference to curl, if available.Gravatar Joey Hess2011-08-27
| | | | Got tired of curl's various ugly progress bars.
* show a message if asked to get something from the web that is not thereGravatar Joey Hess2011-08-27
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2011-08-26
|\
| * (no commit message)Gravatar http://peter-simons.myopenid.com/2011-08-26
| |
* | code simplification thanks to applicative functorsGravatar Joey Hess2011-08-25
|/
* Set EMAIL when running test suite so that git does not need to be configured ↵Gravatar Joey Hess2011-08-23
| | | | first. Closes: #638998
* split groups of related functions out of UtilityGravatar Joey Hess2011-08-22
|
* avoid the functorGravatar Joey Hess2011-08-21
| | | | fmap = liftM
* file movedGravatar Joey Hess2011-08-21
|
* tweakGravatar Joey Hess2011-08-21
|
* outdated commentGravatar Joey Hess2011-08-21
|
* moved files aroundGravatar Joey Hess2011-08-20
|
* note about why curl -# is usedGravatar Joey Hess2011-08-20
| | | | | | I'd rather use wget really, but as git-annex uses libcurl elsewhere, it seems best to stick with curl. And making this configurable seems overboard.
* add news item for git-annex 3.20110819Gravatar Joey Hess2011-08-19
|
* releasing version 3.201108193.20110819Gravatar Joey Hess2011-08-19
|
* Fix broken upgrade from V1 repository. Closes: #638584Gravatar Joey Hess2011-08-19
| | | | | Had forgotten to keep several old versions of functions needed during this upgrade.
* drop an unnecessart liftIOGravatar Joey Hess2011-08-19
| | | | the liftM on its own can lift all the way into IO.
* make Annex an opaque data typeGravatar Joey Hess2011-08-19
| | | | | | | | | Was a type alias; using newtype has the benefit that type errors will show "Annex foo" rather than two lines of internal type nonsense. Yay! There should be no other effects to size or runtime. I've tried to do this at least twice before (each time I read RWH chapter 10); finally understood how to this time.. sorta.
* make gitDir absoluteGravatar Joey Hess2011-08-19
|
* tweakGravatar Joey Hess2011-08-18
|
* Added annex-cost-command configuration, which can be used to vary the cost ↵Gravatar Joey Hess2011-08-18
| | | | | | of a remote based on the output of a shell command. Also avoided crashing if the user specified cost value cannot be parsed.
* tweakGravatar Joey Hess2011-08-17
|