Skip to content

Commit 74d9315

Browse files
author
bear (Mike Taylor)
committed
removed all IndieAuth related code - that now lives in ninka project
1 parent 68b7267 commit 74d9315

File tree

3 files changed

+2
-18
lines changed

3 files changed

+2
-18
lines changed

README.md

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ Working
2020
* POST of Webmention to discovered callback
2121
* Receipt of a Webmention POST
2222
* support for RelMe verification
23-
* IndieAuth tools
2423

2524
Pending
2625
* MicroPub support
@@ -68,16 +67,6 @@ Determine if a given resourceURL is authoritative for the profileURL.
6867
The list of rel="me" links will be discovered if not provided in the optional
6968
profileRelMes parameter or the resourceRelMes paramter.
7069

71-
IndieAuth
72-
=========
73-
discoverAuthEndpoints()
74-
-----------------------
75-
Find the authorization or redirect_uri endpoints for the given authDomain.
76-
77-
validateAuthCode()
78-
------------------
79-
Call authorization endpoint to validate given auth code.
80-
8170
Validators
8271
==========
8372
URLValidator class
@@ -88,9 +77,5 @@ Requires
8877
========
8978
Python v2.6+ but see requirements.txt for a full list
9079

91-
Installing the latest version of Requests and it's OAuth plugin now requires
92-
pyOpenSSL which will require compiling of source libs. You may need to have
93-
installed the -dev package for the version of Python you are working with.
94-
9580
For testing we use [httmock](https://pypi.python.org/pypi/httmock/) to mock
9681
the web calls.

ronkyuu/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#/usr/bin/env python
22

3-
VERSION = (0, 2, 8, '')
3+
VERSION = (0, 2, 9, '')
44

55
__author__ = 'Mike Taylor'
66
__contact__ = 'bear@bear.im'
@@ -13,4 +13,3 @@
1313
from webmention import findMentions, findEndpoint, discoverEndpoint, sendWebmention
1414
from relme import findRelMe, confirmRelMe
1515
from validators import URLValidator
16-
from indieauth import discoverAuthEndpoints, validateAuthCode

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
setup(
1717
name='ronkyuu',
18-
version='0.2.8',
18+
version='0.2.9',
1919
description='Webmention Manager',
2020
long_description=readme,
2121
install_requires=required,

0 commit comments

Comments
 (0)