commit 5981e19f8029dc2a63a70ffa41fbc5963ccb43ed
Author: Aleix Conchillo Flaqué <aconchillo@gmail.com>
Date:   Sun Aug 19 00:55:21 2018 -0700

    bump version to 0.3.0

 AUTHORS      |  4 ++++
 NEWS         | 10 ++++++++++
 README.org   |  2 +-
 configure.ac |  2 +-
 4 files changed, 16 insertions(+), 2 deletions(-)

commit c261126b82b36d526d9b1659d5b4a4a251b3df00
Author: Aleix Conchillo Flaqué <aconchillo@gmail.com>
Date:   Sun Aug 19 00:51:11 2018 -0700

    client: no need to uri encode

 oauth/oauth1/client.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 5cd545e3144023b9ed5403c91aaca4f8a3a99e7a
Author: Aleix Conchillo Flaqué <aconchillo@gmail.com>
Date:   Sun Aug 19 00:38:52 2018 -0700

    examples: use env insteadof calling guile directly

 examples/oauth1/twitter.scm | 30 +++++++++++++++---------------
 1 file changed, 15 insertions(+), 15 deletions(-)

commit 2fbedd9f0f5f9cd2d49e9ffcae599eafa960ad25
Author: Aleix Conchillo Flaqué <aconchillo@gmail.com>
Date:   Sun Aug 19 00:38:01 2018 -0700

    client: encode callback url

 oauth/oauth1/client.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 15bf8a8e0f9326b0c4d45f2367c7c61478663644
Author: Aleix Conchillo Flaqué <aconchillo@gmail.com>
Date:   Sat Aug 18 22:56:04 2018 -0700

    configure.ac: amke sure we use guile 2.2

 configure.ac | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit e6ce4c200f161b2c8e2e2fbdfb759bc1dd04ce26
Author: Aleix Conchillo Flaqué <aconchillo@gmail.com>
Date:   Sat Aug 18 22:54:42 2018 -0700

    updates that now require guile >= 2.2

 README.org                   |  7 +++--
 oauth/hashing/Makefile.am    |  2 +-
 oauth/hashing/fixnums.scm    | 45 +++++++++++++++++++++++++++++++
 oauth/hashing/sha-1.scm      |  2 +-
 oauth/oauth1.scm             |  4 +--
 oauth/oauth1/client.scm      |  7 +++--
 oauth/oauth1/credentials.scm |  8 ++++--
 oauth/oauth1/request.scm     |  9 ++++---
 oauth/oauth1/signature.scm   |  4 ++-
 oauth/oauth1/utils.scm       | 64 +++-----------------------------------------
 10 files changed, 76 insertions(+), 76 deletions(-)
 create mode 100644 oauth/hashing/fixnums.scm

commit 0ba6dcd461e9dbc0ac3662c0706659b03fc6cb95
Author: Aleix Conchillo Flaqué <aconchillo@gmail.com>
Date:   Sat Aug 18 22:53:31 2018 -0700

    improved configure.ac

 configure.ac      | 7 +++++++
 oauth/Makefile.am | 4 ++--
 2 files changed, 9 insertions(+), 2 deletions(-)

commit 17b4da7c79630aa4d56044a60919da53041b3f11
Author: Aleix Conchillo Flaqué <aleix@oblong.com>
Date:   Fri Aug 17 16:33:49 2018 -0700

    improved build and updat to latest versions of industria/hashing

 INSTALL                               | 320 +++++++++++++++++-----------------
 configure.ac                          |   3 +-
 oauth/Makefile.am                     |   7 +-
 oauth/hashing/LICENSE.txt             |  21 +++
 oauth/{utils => hashing}/Makefile.am  |  10 +-
 oauth/{utils => hashing}/sha-1.scm    | 203 +++++++++++----------
 oauth/industria/LICENSE.txt           |  21 +++
 oauth/industria/Makefile.am           |  39 +++++
 oauth/{utils => industria}/base64.scm | 175 ++++++++++---------
 oauth/oauth1/Makefile.am              |   5 +-
 oauth/oauth1/signature.scm            |   4 +-
 11 files changed, 450 insertions(+), 358 deletions(-)
 create mode 100644 oauth/hashing/LICENSE.txt
 rename oauth/{utils => hashing}/Makefile.am (82%)
 rename oauth/{utils => hashing}/sha-1.scm (61%)
 create mode 100644 oauth/industria/LICENSE.txt
 create mode 100644 oauth/industria/Makefile.am
 rename oauth/{utils => industria}/base64.scm (64%)

commit 0215910e08a6da449de642b0c5821fc21dd9b07f
Author: Aleix Conchillo Flaqué <aleix@oblong.com>
Date:   Fri May 5 18:53:01 2017 -0700

    README: add autoreconf instructions

 README.org | 4 ++++
 1 file changed, 4 insertions(+)

commit 83843b6d85dc54a29e81ffcbce2b37e0b8fcbe7a
Merge: 81b87a8 91eaa71
Author: Aleix Conchillo Flaqué <aconchillo@gmail.com>
Date:   Mon Sep 15 21:46:10 2014 -0700

    Merge pull request #2 from andywingo/master
    
    Work with Guile master; import needed industria; fix POST with params

commit 91eaa711b1a2f928eefbfc0af5e767909d2302bd
Author: Andy Wingo <wingo@igalia.com>
Date:   Fri Sep 12 15:10:30 2014 +0200

    Fix requests with non-oauth parameters
    
    * oauth/oauth1/utils.scm (oauth1-param?): New helper.
    * oauth/oauth1/request.scm (oauth1-request-http-headers): Only put OAuth
      params in the Authorization header.
      (oauth1-request-http-url): By default, don't include OAuth params.
      (oauth1-http-request): Use oauth1-request-http-url, so we get the
      non-oauth params in the URL.
    
    * oauth/oauth1/client.scm (oauth1-client-authorize-url): Include all
      params.

 oauth/oauth1/client.scm  |  2 +-
 oauth/oauth1/request.scm | 16 ++++++++++------
 oauth/oauth1/utils.scm   |  8 ++++++++
 3 files changed, 19 insertions(+), 7 deletions(-)

commit 3603b3c00d2796cd8b7cbbce287a2841ce3845a8
Author: Andy Wingo <wingo@igalia.com>
Date:   Fri Sep 12 14:40:16 2014 +0200

    encode-and-sort-params doesn't mutate its argument
    
    * oauth/oauth1/utils.scm (encode-and-sort-params): Use an explicit loop
      instead of assq-remove!, which may mutate its argument.

 oauth/oauth1/utils.scm | 20 ++++++++++++--------
 1 file changed, 12 insertions(+), 8 deletions(-)

commit 3e6653024c227ae43b1365b1cd7d6dcc6b1d42d7
Author: Andy Wingo <wingo@igalia.com>
Date:   Fri Sep 12 14:39:24 2014 +0200

    Import needed parts from Industria
    
    * oauth/utils/base64.scm:
    * oauth/utils/sha-1.scm: New files, imported from Göran Weinholt's
      Industria library.
    
    * configure.ac:
    * oauth/Makefile.am:
    * oauth/oauth1/signature.scm:
    * oauth/utils/Makefile.am: Wire new files into build.
    
    * README.org: No more dependency on Industria.

 README.org                 |   1 -
 configure.ac               |   5 +-
 oauth/Makefile.am          |   2 +-
 oauth/oauth1/signature.scm |   4 +-
 oauth/utils/Makefile.am    |  41 +++++++
 oauth/utils/base64.scm     | 285 ++++++++++++++++++++++++++++++++++++++++++
 oauth/utils/sha-1.scm      | 300 +++++++++++++++++++++++++++++++++++++++++++++
 7 files changed, 631 insertions(+), 7 deletions(-)
 create mode 100644 oauth/utils/Makefile.am
 create mode 100644 oauth/utils/base64.scm
 create mode 100644 oauth/utils/sha-1.scm

commit 81b87a8bf4c87e17bc6c80ed72957dbac7c7dfeb
Author: Aleix Conchillo Flaqué <aconchillo@gmail.com>
Date:   Mon Aug 18 12:05:45 2014 +0200

    bump configure.ac version to 0.2.0 and update README/NEWS

 NEWS         | 5 +++++
 README.org   | 6 +++---
 configure.ac | 2 +-
 3 files changed, 9 insertions(+), 4 deletions(-)

commit ebb3545a9cf6feb7610bde8795051506a1e62afa
Author: Aleix Conchillo Flaqué <aconchillo@gmail.com>
Date:   Mon Aug 18 12:01:53 2014 +0200

    examples: use https in all twitter urls

 examples/oauth1/twitter.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 6a37a8cc6a60ddb565686c90f1866295fd4b7bb5
Author: Aleix Conchillo Flaqué <aconchillo@gmail.com>
Date:   Mon Aug 18 12:01:10 2014 +0200

    use uri-encode, needs guile >= 2.0.10

 configure.ac               |  4 +--
 oauth/oauth1/request.scm   |  4 +--
 oauth/oauth1/signature.scm | 12 +++----
 oauth/oauth1/utils.scm     | 90 +++-------------------------------------------
 4 files changed, 14 insertions(+), 96 deletions(-)

commit 4c7181ece016c948fce2fd62b27c4d80b4d77435
Author: Aleix Conchillo Flaqué <aconchillo@gmail.com>
Date:   Mon Aug 18 12:00:58 2014 +0200

    update INSTALL

 INSTALL | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 6f5a3207e5628dce3aca8aab170b990976108680
Author: Aleix Conchillo Flaqué <aconchillo@gmail.com>
Date:   Mon Aug 18 11:43:34 2014 +0200

    copy guile.m4 from guile 2.0.11

 build-aux/guile.m4 | 55 ++++++++++++++++++++++++++++++++++++++++++++----------
 1 file changed, 45 insertions(+), 10 deletions(-)

commit ba22aa4ddbbd1a924cc9771f284af105eeb81ecd
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Tue Oct 8 22:42:09 2013 -0700

    readme: move procedures before example

 README.org | 42 +++++++++++++++++++++---------------------
 1 file changed, 21 insertions(+), 21 deletions(-)

commit 6ffd68f2c993bda159e2db33a021a4300b11ac3f
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Tue Oct 8 15:43:27 2013 -0700

    update download link to savannah

 README.org | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a9d54427a3908af3a0b3834e520b7625f7d8df23
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Thu Jul 25 12:16:56 2013 -0700

    add + to LGPLv3 and update TODO

 README.org | 2 +-
 TODO       | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

commit f7d277c73d2ef68241afa37f3e24d2d63c2838da
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Sun Jul 14 09:28:12 2013 -0700

    add missing colons to README

 README.org | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

commit ef1d6f6e55f573a5380f7dea08254860266e6d4d
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Sat Jul 6 23:18:57 2013 -0700

    bump configure.ac version and update NEWS and README

 NEWS         | 6 ++++++
 README.org   | 2 +-
 configure.ac | 2 +-
 3 files changed, 8 insertions(+), 2 deletions(-)

commit a9cca39e87825c39f49bc98d1d06727ca4cd51e3
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Sat Jul 6 23:18:37 2013 -0700

    use pure sh script syntax in env.in

 env.in | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

commit 78d6bc594f912e59984656830fdc141a4213afd0
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Fri Jun 28 08:40:11 2013 -0700

    include TODO in distribution tarball

 Makefile.am | 2 ++
 TODO        | 1 +
 2 files changed, 3 insertions(+)

commit e41a37b7e59f9ca28faeeb0ce697ad9835acd05f
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Fri Jun 28 08:39:01 2013 -0700

    minor update to TODO file

 TODO | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 7510ac62a40753d7504fd0fc4a9ba08f0a9ead6d
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Fri Jun 28 08:37:46 2013 -0700

    README: add note about other procedures

 README.org | 3 +++
 1 file changed, 3 insertions(+)

commit 71d342a49b992b44ffa9c489903548d9c1203650
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Fri Jun 28 08:28:06 2013 -0700

    added TODO file

 TODO | 7 +++++++
 1 file changed, 7 insertions(+)
 create mode 100644 TODO

commit df071cf7eba51809dabb84c2b44a00ecf975713f
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Thu Jun 27 00:40:24 2013 -0700

    build oauth1 main module file

 oauth/Makefile.am | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

commit 69b88395e722b2770aef563d8b67d45343165222
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Thu Jun 27 00:36:08 2013 -0700

    include examples in dist tarball

 .gitignore           |  2 +-
 Makefile.am          |  2 +-
 configure.ac         |  3 ++-
 examples/Makefile.am | 24 ++++++++++++++++++++++++
 4 files changed, 28 insertions(+), 3 deletions(-)
 create mode 100644 examples/Makefile.am

commit 09aa7922d29f77df9f654104dc8f0d54759f5785
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Thu Jun 27 00:30:33 2013 -0700

    updated NEWS with release date

 NEWS | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c14fe9cb974230a526ac8d4bc3c935cd9a56128b
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Thu Jun 27 00:29:56 2013 -0700

    added oauth1-uri-encode until next guile release

 oauth/oauth1/client.scm    |  1 -
 oauth/oauth1/request.scm   |  2 +-
 oauth/oauth1/signature.scm | 10 +++---
 oauth/oauth1/utils.scm     | 90 ++++++++++++++++++++++++++++++++++++++++++++--
 4 files changed, 93 insertions(+), 10 deletions(-)

commit 964087a2f6d053b64d15880791fe476f8270fdd7
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Thu Jun 27 00:15:11 2013 -0700

    README: add reference to dev.twitter.com

 README.org | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit d529859aa1b906a3c239d91bcb3be365053cbb59
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Thu Jun 27 00:12:30 2013 -0700

    oops, last minute twitter example fix

 README.org                  | 2 +-
 examples/oauth1/twitter.scm | 8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)

commit 726151b514a514fa9f1090d7d70a16e05ef95fc3
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Thu Jun 27 00:07:43 2013 -0700

    README: added download link and update requirements

 README.org | 22 ++++++++++------------
 1 file changed, 10 insertions(+), 12 deletions(-)

commit 5f346ead0b24908ad6597865bd1ff6ef27422213
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Thu Jun 27 00:02:28 2013 -0700

    READMEÑ move procedures at the end

 README.org | 34 +++++++++++++++++-----------------
 1 file changed, 17 insertions(+), 17 deletions(-)

commit 141740cfc6c55e7f97cbbf7016618c3b21d66584
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Thu Jun 27 00:01:39 2013 -0700

    README: add procedures

 README.org | 34 +++++++++++++++++++++++++++++-----
 1 file changed, 29 insertions(+), 5 deletions(-)

commit 4e62779730c7c030faecd5d36e1ef2e16e75ec1c
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Wed Jun 26 23:49:19 2013 -0700

    README: some more clarifications in the example

 README.org | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

commit 848355f29613f5b49d6fcc1575566e66c2c2e33e
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Wed Jun 26 23:46:40 2013 -0700

    README: reduce twitter example lines

 README.org | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

commit 87326b20c2b61ff8d4c728984089b818d16a1212
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Wed Jun 26 23:42:30 2013 -0700

    README: single line twitter example

 README.org | 18 +++++-------------
 1 file changed, 5 insertions(+), 13 deletions(-)

commit f56d91c79fae5a85813c5c19e6fef3d41143c821
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Wed Jun 26 23:40:03 2013 -0700

    README: added twitter example

 README.org | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 49 insertions(+)

commit c1a88d694f3b94cab979f3e3eb0aad365bea352c
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Wed Jun 26 23:25:06 2013 -0700

    examples: simplify twitter client
    
    * oauth/oauth1/client.scm: oauth1-client-request now returns a string.

 examples/oauth1/twitter.scm | 25 +++++++++----------------
 oauth/oauth1/client.scm     | 11 +++++++----
 2 files changed, 16 insertions(+), 20 deletions(-)

commit df2aafc5979b91631cfa06715cdf682760c1ea80
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Wed Jun 26 22:59:32 2013 -0700

    move http methods to utils module

 oauth/oauth1/request.scm | 59 ++++--------------------------------------------
 oauth/oauth1/utils.scm   | 59 +++++++++++++++++++++++++++++++++++++++++++++++-
 2 files changed, 63 insertions(+), 55 deletions(-)

commit 07d42276fda3350b91cb23abe0592e73e8e279f2
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Wed Jun 26 22:50:24 2013 -0700

    documentation and refactorings
    
    * oauth/oauth1/credentials.scm: credentials defines a pair of unique
      identifier and a secret (used in client credentials or tokens).
    
    * oauth/oauth1/client.scm: return tokens as credentials.
    
    * oauth/oauth1/request.scm (oauth1-request-sign): new method for signing
      request. the signature module is only used to define signature
      algorithms.
    
    * oauth/oauth1/signature.scm: request signature moved to request module.
    
    * oauth/oauth1/utils.scm: added parsing of
      application/x-www-form-urlencoded content type strings.

 examples/oauth1/twitter.scm  | 46 +++++++++++++-----------------
 oauth/oauth1.scm             |  4 +--
 oauth/oauth1/Makefile.am     |  2 +-
 oauth/oauth1/client.scm      | 64 +++++++++++++++++++++++++++++-------------
 oauth/oauth1/credentials.scm | 51 +++++++++++++++++++++++++++++++++
 oauth/oauth1/request.scm     | 65 ++++++++++++++++++++++++++++++++++++------
 oauth/oauth1/signature.scm   | 67 +++++++++++++++-----------------------------
 oauth/oauth1/token.scm       | 57 -------------------------------------
 oauth/oauth1/utils.scm       | 26 ++++++++++++++++-
 9 files changed, 221 insertions(+), 161 deletions(-)
 create mode 100644 oauth/oauth1/credentials.scm
 delete mode 100644 oauth/oauth1/token.scm

commit 5cd3c799f169c3bc7a0cd34e91302b16c4411eb3
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Tue Jun 25 08:25:43 2013 -0700

    unfortunately we need a uri-encode fix not available in 2.0.9

 README.org | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 4f20191db8a0cc67ce019feccf095751dcbcf8b7
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Mon Jun 24 23:25:12 2013 -0700

    fix gnutls url

 README.org | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 317cab39843ff34abc2281dc4129f2345228ff51
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Mon Jun 24 23:23:10 2013 -0700

    added initial readme notes

 README.org | 45 ++++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 44 insertions(+), 1 deletion(-)

commit eca0d9a77aded23d3323e44cca633eb0feda7139
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Mon Jun 24 23:01:52 2013 -0700

    twitter: always start form with empty key and secret values

 examples/oauth1/twitter.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit c7306b6e47808314304cd837d54e5a381dbd7452
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Mon Jun 24 22:59:00 2013 -0700

    add credentials and oauth helper request procedure
    
    * oauth/oauth1/signature.scm: define credentials. Credentials contain a
      consumer key and secret and also the signature algorithm to be used
      for signing the requests.
    
    * oauth/oauth1/client.scm: use credentials and define new
      oauth1-client-request helper function.
    
    * examples/oauth1/twitter.scm: use credentials and new
      oauth1-client-request helper function.

 examples/oauth1/twitter.scm | 33 +++++++++++----------------------
 oauth/oauth1/client.scm     | 39 +++++++++++++++++++++++++++------------
 oauth/oauth1/signature.scm  | 25 +++++++++++++++++++++----
 3 files changed, 59 insertions(+), 38 deletions(-)

commit 1188226bc87ecf0d22506ae96132e770bf5bcd96
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Mon Jun 24 22:28:14 2013 -0700

    client: add extra argument to specify signature algorithm

 oauth/oauth1/client.scm | 16 +++++++++++-----
 1 file changed, 11 insertions(+), 5 deletions(-)

commit dad0e26ad2c1175ecd648c53ad5694a75432214d
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Mon Jun 24 22:26:37 2013 -0700

    twitter: use unquote for consumer key and secret form values

 examples/oauth1/twitter.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 64d9e6318dccb64f9b014cec69d5bdb503d88023
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Mon Jun 24 22:24:44 2013 -0700

    request: remove unused oauth1-request-parse-http-headers

 oauth/oauth1/request.scm | 5 -----
 1 file changed, 5 deletions(-)

commit 7e3e608f0cf91b82e12bf18c29e427ca5b6b2e10
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Sat Jun 22 22:56:19 2013 -0700

    remove notion of service -> more procuder arguments
    
    * oauth/oauth1/client.scm: we remove the service struct. This means we
      don't hold request/auth/access urls anymore, neither key and secret in
      a single struct. This requires a bit more typing when calling some
      functions but is also a bit more flexible right now. A part from
      testing, it easily allows changing the URLS (e.g. adding extra
      parameters).

 INSTALL                                     |  2 +-
 examples/oauth1/twitter.scm                 | 60 ++++++++++++++---------------
 oauth/oauth1.scm                            |  4 +-
 oauth/oauth1/Makefile.am                    |  2 +-
 oauth/oauth1/client.scm                     | 29 ++++++--------
 oauth/oauth1/request.scm                    |  9 +++++
 oauth/oauth1/{service.scm => signature.scm} | 58 ++++++++--------------------
 7 files changed, 69 insertions(+), 95 deletions(-)
 rename oauth/oauth1/{service.scm => signature.scm} (54%)

commit 9f3d61e2c50a8585da213867aab4a596972f9982
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Thu May 16 23:11:51 2013 -0700

    renames: client->service (to be reused by server) and oauth->client

 examples/{ => oauth1}/twitter.scm |  36 ++++++------
 oauth/oauth1.scm                  |   4 +-
 oauth/oauth1/Makefile.am          |   2 +-
 oauth/oauth1/client.scm           | 116 +++++++++++++++-----------------------
 oauth/oauth1/oauth.scm            |  86 ----------------------------
 oauth/oauth1/service.scm          | 108 +++++++++++++++++++++++++++++++++++
 6 files changed, 174 insertions(+), 178 deletions(-)
 rename examples/{ => oauth1}/twitter.scm (87%)
 delete mode 100644 oauth/oauth1/oauth.scm
 create mode 100644 oauth/oauth1/service.scm

commit 0c4462e47b6fc6bdbef5e33e260afe5fe2784209
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Wed May 15 23:19:41 2013 -0700

    oauth1: params need to be a list of conses

 oauth/oauth1/oauth.scm | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

commit 95099349d5458325ebb35ed81ca55f34d03d4057
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Wed May 15 21:34:51 2013 -0700

    remove uncomplete procedure

 oauth/oauth1/client.scm | 2 --
 1 file changed, 2 deletions(-)

commit 174b76bf7476980e9bf5f7e4cf71ddce4c4da0d7
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Wed May 15 21:34:37 2013 -0700

    fix .gitignore with guile-oauth

 .gitignore | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b106d0ea0cc982e85a246bcc849aacbd6f418771
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Wed May 15 21:25:08 2013 -0700

    just use regular e-mail format

 Makefile.am              | 2 +-
 examples/twitter.scm     | 2 +-
 oauth/Makefile.am        | 2 +-
 oauth/oauth1.scm         | 2 +-
 oauth/oauth1/Makefile.am | 2 +-
 oauth/oauth1/client.scm  | 2 +-
 oauth/oauth1/oauth.scm   | 2 +-
 oauth/oauth1/request.scm | 2 +-
 oauth/oauth1/token.scm   | 2 +-
 oauth/oauth1/utils.scm   | 2 +-
 10 files changed, 10 insertions(+), 10 deletions(-)

commit 3485c93ae39566cb6f43fc0e08ae4b72a97769ce
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Wed May 15 21:19:31 2013 -0700

    move to LGPLv3 license

 COPYING.LESSER           | 165 +++++++++++++++++++++++++++++++++++++++++++++++
 Makefile.am              |  22 ++++---
 configure.ac             |  23 ++++---
 examples/twitter.scm     |  30 ++++-----
 oauth/Makefile.am        |  22 ++++---
 oauth/oauth1/Makefile.am |  22 ++++---
 oauth/oauth1/client.scm  |  22 +++----
 oauth/oauth1/oauth.scm   |  48 ++++++--------
 oauth/oauth1/request.scm |  20 +++---
 oauth/oauth1/token.scm   |  20 +++---
 oauth/oauth1/utils.scm   |  20 +++---
 11 files changed, 285 insertions(+), 129 deletions(-)
 create mode 100644 COPYING.LESSER

commit ee3635074b7910273506baf97cde604adb0f50b9
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Wed May 8 23:01:53 2013 -0700

    examples: added twitter user timeline

 examples/twitter.scm | 49 ++++++++++++++++++++++++++++++++++++-------------
 1 file changed, 36 insertions(+), 13 deletions(-)

commit f1c2858b8815577ef75abbe03b7e098f25fe2ac3
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Wed May 8 22:28:42 2013 -0700

    add https-call and define https-[get|post] with it

 oauth/oauth1/request.scm | 94 +++++++++++++++++-------------------------------
 1 file changed, 33 insertions(+), 61 deletions(-)

commit 07623c7600bc9d9cc37e6f0116a773834a42891e
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Tue May 7 23:37:36 2013 -0700

    added support for plaintext signature

 oauth/oauth1/client.scm | 10 ++++++++++
 1 file changed, 10 insertions(+)

commit c1b9be648ee336e95bb15cb49d96f2cf41d97dee
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Tue May 7 23:24:00 2013 -0700

    signature methods provided in client.scm; some related cleanup

 examples/twitter.scm       |   3 +-
 oauth/oauth1.scm           |   2 -
 oauth/oauth1/Makefile.am   |   1 -
 oauth/oauth1/client.scm    |  58 +++++++++++++++++++++--
 oauth/oauth1/oauth.scm     |  21 +++------
 oauth/oauth1/request.scm   |  31 +++++++++++++
 oauth/oauth1/signature.scm | 111 ---------------------------------------------
 7 files changed, 93 insertions(+), 134 deletions(-)
 delete mode 100644 oauth/oauth1/signature.scm

commit bcb08773f985ae4df89237c01ce11fa71ceabc16
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Fri May 3 10:43:13 2013 -0700

    added guile-oauth web twitter client

 examples/twitter.scm | 215 +++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 215 insertions(+)
 create mode 100755 examples/twitter.scm

commit 7074fba0cfe5cbce14b87d52ffe24206030198c3
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Fri May 3 10:42:11 2013 -0700

    some refactoring and add GET method support

 oauth/oauth1.scm           |  2 ++
 oauth/oauth1/Makefile.am   |  1 +
 oauth/oauth1/oauth.scm     | 42 +++++++++++++--------------------
 oauth/oauth1/request.scm   | 39 ++++++++++++++++++++++++++++++
 oauth/oauth1/signature.scm | 17 ++++++-------
 oauth/oauth1/token.scm     | 59 ++++++++++++++++++++++++++++++++++++++++++++++
 oauth/oauth1/utils.scm     | 11 +--------
 7 files changed, 128 insertions(+), 43 deletions(-)
 create mode 100644 oauth/oauth1/token.scm

commit 5d0c48e742c778a64e2e019fcadc5d85584cd626
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Fri May 3 00:38:19 2013 -0700

    use default OAuth 1.0 signature instead of 1.0/a

 oauth/oauth1/oauth.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 59bb9142f3b024701b40b9535d0246152f24307c
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Thu May 2 23:39:55 2013 -0700

    disable gnutls logging

 oauth/oauth1/request.scm | 53 ++++++++++++++++++++++++------------------------
 1 file changed, 26 insertions(+), 27 deletions(-)

commit 45fc165e4789c782a2f2b76c584bda16cf24d837
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Thu May 2 23:37:42 2013 -0700

    request token, authorize token and access token working

 oauth/oauth1.scm           |  12 ++++-
 oauth/oauth1/Makefile.am   |   8 +++-
 oauth/oauth1/client.scm    |  95 +++++--------------------------------
 oauth/oauth1/oauth.scm     | 113 +++++++++++++++++++++++++++++++++++++++++++++
 oauth/oauth1/request.scm   | 101 +++++++++++++++++++++++++++++++---------
 oauth/oauth1/signature.scm | 110 +++++++++++++++++++++++++++++++++++++++++++
 oauth/oauth1/utils.scm     |  38 ++++-----------
 7 files changed, 338 insertions(+), 139 deletions(-)
 create mode 100644 oauth/oauth1/oauth.scm
 create mode 100644 oauth/oauth1/signature.scm

commit b911abd0b34d36e0df721afaedb6b952fdeb9364
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Thu May 2 00:12:29 2013 -0700

    update NEWS file

 NEWS | 12 +-----------
 1 file changed, 1 insertion(+), 11 deletions(-)

commit 8c9c22b1685c0e2259d6a6632055e6bde844df4f
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Thu May 2 00:07:38 2013 -0700

    oops, remove example code

 oauth/oauth1/client.scm | 15 ---------------
 1 file changed, 15 deletions(-)

commit 6fe844ad3c5d4c0bc354670238f1c362872b3d40
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Thu May 2 00:03:16 2013 -0700

    work in progress, but starting to look good

 oauth/oauth1/Makefile.am |   2 +-
 oauth/oauth1/client.scm  | 107 ++++++++++++++++++++++++++++++++++++++++++++++-
 oauth/oauth1/request.scm |  80 +++++++++++++++++++++++++++++++++++
 oauth/oauth1/utils.scm   | 100 +++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 287 insertions(+), 2 deletions(-)
 create mode 100644 oauth/oauth1/request.scm
 create mode 100644 oauth/oauth1/utils.scm

commit da0650cd80e41bd9b858029322b1fd31f7a9cdd5
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Thu May 2 00:02:23 2013 -0700

    use new guile.m4 macro GUILE_PKG and check for required modules

 build-aux/guile.m4 | 171 ++++++++++++++++++++++++++++++++++++++---------------
 configure.ac       |  11 ++--
 2 files changed, 128 insertions(+), 54 deletions(-)

commit d07ad855b568d42fcb46e0cc7d740a4f30b8145c
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Thu Apr 4 13:13:44 2013 -0700

    initial import

 .gitignore               |  16 ++
 AUTHORS                  |   2 +
 COPYING                  | 674 +++++++++++++++++++++++++++++++++++++++++++++++
 ChangeLog                |   6 +
 INSTALL                  | 370 ++++++++++++++++++++++++++
 Makefile.am              |  27 ++
 NEWS                     |  14 +
 README                   |   1 +
 README.org               |   4 +
 build-aux/guile.m4       | 229 ++++++++++++++++
 configure.ac             |  44 ++++
 env.in                   |  16 ++
 oauth/Makefile.am        |  22 ++
 oauth/oauth1.scm         |  43 +++
 oauth/oauth1/Makefile.am |  36 +++
 oauth/oauth1/client.scm  |  31 +++
 16 files changed, 1535 insertions(+)
 create mode 100644 .gitignore
 create mode 100644 AUTHORS
 create mode 100644 COPYING
 create mode 100644 ChangeLog
 create mode 100644 INSTALL
 create mode 100644 Makefile.am
 create mode 100644 NEWS
 create mode 120000 README
 create mode 100644 README.org
 create mode 100644 build-aux/guile.m4
 create mode 100644 configure.ac
 create mode 100644 env.in
 create mode 100644 oauth/Makefile.am
 create mode 100644 oauth/oauth1.scm
 create mode 100644 oauth/oauth1/Makefile.am
 create mode 100644 oauth/oauth1/client.scm
