summaryrefslogtreecommitdiff
path: root/doc/design/assistant
Commit message (Collapse)AuthorAge
* correct spelling mistakesGravatar Edward Betts2017-02-12
|
* update links to wormhole issuesGravatar Joey Hess2016-12-16
|
* updatesGravatar Joey Hess2016-12-13
|
* updateGravatar Joey Hess2016-12-07
|
* PAKEGravatar Joey Hess2016-12-06
|
* local lan detectionGravatar Joey Hess2016-11-14
|
* updated designGravatar Joey Hess2016-11-14
| | | | more details on using tor and pairing
* poll vote (OpenStack SWIFT)Gravatar 2a01:cb04:422:dd00:75bc:9129:cb49:31be2016-10-04
|
* magic wormhole seems like a nice alternative for arbitrary data sharing hereGravatar anarcat2016-07-26
|
* New url for git-remote-gcrypt, now maintained by spwhitton.Gravatar Joey Hess2016-07-05
|
* minor typo fixes throughoutGravatar Yaroslav Halchenko2016-06-02
| | | | | problematic flexibility
* poll vote (Tahoe-LAFS)Gravatar 2a03:4980:13:4d00:21e:64ff:fe1c:1b1a2016-04-23
|
* poll vote (My phone (or MP3 player))Gravatar 2a03:4980:13:4d00:21e:64ff:fe1c:1b1a2016-04-23
|
* poll vote (Tahoe-LAFS)Gravatar https://tylercipriani.com/2016-04-18
|
* poll vote (OpenStack SWIFT)Gravatar 8.44.144.242016-04-18
|
* poll vote (Same as for regular git-annex. ~/annex/)Gravatar 185.16.53.2252016-03-24
|
* rename files containing :Gravatar Joey Hess2016-03-12
| | | | | | This is mostly to let the repo check out on windows w/o using cygwin's git. But, bash completion is also crap with : , so ..
* poll vote (My phone (or MP3 player))Gravatar 84.142.108.2332016-02-17
|
* poll vote (DCIM directory (photos and videos only))Gravatar 101.231.32.1662016-02-02
|
* poll vote (My phone (or MP3 player))Gravatar 14.203.223.702015-12-16
|
* Added a comment: Is android 6.0 supported?Gravatar pweemeeuw@86491f921da15d6a4dc6e1878fd42750b33f69632015-11-30
|
* poll vote (/sdcard/annex)Gravatar 124.40.246.762015-10-24
|
* poll vote (Google Drive)Gravatar 119.225.142.22015-09-23
|
* Added a comment: Webapp don openGravatar dirk.schmidt@045f26624b94d351628bbb315f94150d627fb18b2015-07-08
|
* add cjdns and tor alsoGravatar Joey Hess2015-07-07
|
* update; mention snow and generalize the design someGravatar Joey Hess2015-07-07
|
* poll vote (Tahoe-LAFS)Gravatar 66.55.144.1802015-06-08
|
* poll vote (Tahoe-LAFS)Gravatar 66.55.144.1802015-06-08
|
* Various typo fixes in doc/*.mdwnGravatar Øyvind A. Holm2015-04-02
|
* poll vote (Amazon Glacier (done))Gravatar 92.129.194.192015-03-03
|
* poll vote (Amazon S3 (done))Gravatar 92.129.194.192015-03-03
|
* poll vote (OpenStack SWIFT)Gravatar 195.187.238.802015-03-02
|
* poll vote (OpenStack SWIFT)Gravatar 195.187.238.802015-03-02
|
* poll vote (OpenStack SWIFT)Gravatar 195.234.136.802015-02-17
|
* poll vote (Google Drive)Gravatar 5.22.130.322015-02-13
|
* poll vote (Tahoe-LAFS)Gravatar 5.22.130.322015-02-13
|
* poll vote (OpenStack SWIFT)Gravatar 5.22.130.322015-02-13
|
* poll vote (Amazon S3 (done))Gravatar 74.128.196.572015-01-27
|
* poll vote (Amazon S3 (done))Gravatar 74.128.196.572015-01-27
|
* poll vote (/sdcard/annex)Gravatar 2001:4dd0:fbfc:10:219:dbff:fe64:81a72015-01-13
|
* poll vote (My phone (or MP3 player))Gravatar 2001:41d0:fe61:2600:8110:7b59:c518:a87f2015-01-03
|
* poll vote (Google Drive)Gravatar 176.188.103.1592015-01-02
|
* Added a comment: ThanksGravatar chris2014-12-25
|
* poll vote (/sdcard/annex)Gravatar 2001:41d0:fe61:2600:96de:80ff:feb2:56d2014-11-09
|
* poll vote (/sdcard/annex)Gravatar 2003:51:4f3b:6200:b00d:4d41:366d:5b542014-11-08
|
* this is either spam, or indistinguishable from spamGravatar Joey Hess2014-10-21
|
* Added a commentGravatar debryd2014-10-21
|
* Added a commentGravatar http://joeyh.name/2014-09-16
|
* poll vote (/sdcard/annex)Gravatar 71.207.150.2022014-09-09
|
* pushed checkPresent exception handling out of Remote implementationsGravatar Joey Hess2014-08-06
| | | | | | | | | | | | | | | | I tend to prefer moving toward explicit exception handling, not away from it, but in this case, I think there are good reasons to let checkPresent throw exceptions: 1. They can all be caught in one place (Remote.hasKey), and we know every possible exception is caught there now, which we didn't before. 2. It simplified the code of the Remotes. I think it makes sense for Remotes to be able to be implemented without needing to worry about catching exceptions inside them. (Mostly.) 3. Types.StoreRetrieve.Preparer can only work on things that return a Bool, which all the other relevant remote methods already did. I do not see a good way to generalize that type; my previous attempts failed miserably.