aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2013-01-27 09:30:53 +1100
committerGravatar Joey Hess <joey@kitenet.net>2013-01-27 09:30:53 +1100
commit3bd8fba2db932b7730ba497d60030db6ee6f6405 (patch)
treecae3c729ad258407c6f98505031c26c8a931e67f /doc
parent29af01f0a1b9851a9ead5d2286b23c57969e187c (diff)
addurl --fast: Use curl, rather than haskell HTTP library, to support https.
Diffstat (limited to 'doc')
-rw-r--r--doc/install/fromscratch.mdwn1
-rw-r--r--doc/todo/wishlist:_addurl_https:.mdwn3
2 files changed, 3 insertions, 1 deletions
diff --git a/doc/install/fromscratch.mdwn b/doc/install/fromscratch.mdwn
index 91a0d7f61..8fdb8dcda 100644
--- a/doc/install/fromscratch.mdwn
+++ b/doc/install/fromscratch.mdwn
@@ -13,7 +13,6 @@ quite a lot.
* [lifted-base](http://hackage.haskell.org/package/lifted-base)
* [TestPack](http://hackage.haskell.org/cgi-bin/hackage-scripts/package/testpack)
* [QuickCheck 2](http://hackage.haskell.org/package/QuickCheck)
- * [HTTP](http://hackage.haskell.org/package/HTTP)
* [json](http://hackage.haskell.org/package/json)
* [IfElse](http://hackage.haskell.org/package/IfElse)
* [bloomfilter](http://hackage.haskell.org/package/bloomfilter)
diff --git a/doc/todo/wishlist:_addurl_https:.mdwn b/doc/todo/wishlist:_addurl_https:.mdwn
index bfb1c9283..0a62eda6d 100644
--- a/doc/todo/wishlist:_addurl_https:.mdwn
+++ b/doc/todo/wishlist:_addurl_https:.mdwn
@@ -6,3 +6,6 @@ To give an example, here is a PDF file:
If you switch the https: to http: it redirects you back to https:.
As more sites provide https: for non-secret traffic, this becomes more of an issue.
+
+> I've gotten rid of the use of the HTTP library, now it just uses curl.
+> [[done]] --[[Joey]]