oauth: let's rename vocab to oauth1

Because there is a competing OAuth 2.0 protocol which is different. So
this rename should reduce confusion.
char-rename
Björn Lindqvist 2016-10-17 08:02:30 +02:00
parent 7d9bad465c
commit 917d611df5
4 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
USING: oauth oauth.private tools.test accessors kernel assocs USING: oauth1 oauth1.private tools.test accessors kernel assocs
strings namespaces urls ; strings namespaces urls ;
IN: oauth.tests IN: oauth1.tests
{ "%26&b" } [ "&" "b" hmac-key ] unit-test { "%26&b" } [ "&" "b" hmac-key ] unit-test
{ "%26&" } [ "&" f hmac-key ] unit-test { "%26&" } [ "&" f hmac-key ] unit-test

View File

@ -4,7 +4,7 @@ USING: accessors assocs base64 calendar checksums.hmac
checksums.sha combinators fry http http.client kernel locals checksums.sha combinators fry http http.client kernel locals
make math math.parser namespaces present random sequences make math math.parser namespaces present random sequences
sorting strings urls urls.encoding urls.private ; sorting strings urls urls.encoding urls.private ;
IN: oauth IN: oauth1
SYMBOL: consumer-token SYMBOL: consumer-token

View File

@ -2,7 +2,7 @@
! See http://factorcode.org/license.txt for BSD license. ! See http://factorcode.org/license.txt for BSD license.
USING: accessors assocs combinators hashtables http USING: accessors assocs combinators hashtables http
http.client json.reader kernel macros make namespaces sequences http.client json.reader kernel macros make namespaces sequences
io.sockets.secure fry oauth urls ; io.sockets.secure fry oauth1 urls ;
IN: twitter IN: twitter
! Configuration ! Configuration