Skip to content
This repository has been archived by the owner on Jun 4, 2023. It is now read-only.

Commit

Permalink
main documentation url is now http://pyro4.readthedocs.io/
Browse files Browse the repository at this point in the history
  • Loading branch information
irmen committed Jul 11, 2017
1 parent cb5a0c9 commit b333d9e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ other machines. Pyro is written in 100% pure Python and so it
runs on many platforms and Python versions, including Python 3.x.


Documentation can be found online at: http://pythonhosted.org/Pyro4/
Documentation can be found online at: http://pyro4.readthedocs.io
(or unformatted here in the repo at: docs/source/intro.rst)


Expand Down
1 change: 1 addition & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Change Log
utility function to connect to a flame server running with a hmac_key. (Previously it didn't
let you specify the client hmac_key so you had to create a flame proxy manually, on which you
then had to set the _pyroHmacKey property).
- main documentation is now http://pyro4.readthedocs.io instead of http://pythonhosted.org/Pyro4/


**Pyro 4.60**
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,13 @@
including Python 2.x, Python 3.x, IronPython, and Pypy.
The source code repository is on Github: https://github.com/irmen/Pyro4
The documentation can be found here: http://pyro4.readthedocs.io
""",
"author": "Irmen de Jong",
"author_email": "[email protected]",
"keywords": ["distributed objects", "RPC", "remote method call", "IPC"],
"url": "http://pythonhosted.org/Pyro4/",
"url": "http://pyro4.readthedocs.io",
"package_dir": {'': 'src'},
"packages": ['Pyro4', 'Pyro4.socketserver', 'Pyro4.test', 'Pyro4.utils'],
"scripts": [],
Expand Down
4 changes: 2 additions & 2 deletions src/Pyro4/utils/httpgateway.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,10 @@ def redirect(start_response, target):
}});
}}
</script>
<div id="title-logo"><img src="http://pythonhosted.org/Pyro4/_static/pyro.png"></div>
<div id="title-logo"><img src="http://pyro4.readthedocs.io/en/stable/_static/pyro.png"></div>
<div id="title-text">
<h1>Pyro HTTP gateway</h1>
<p>Use http+json to talk to Pyro objects. <a href="https://pythonhosted.org/Pyro4/tipstricks.html#pyro-via-http-and-json">Docs.</a></p>
<p>Use http+json to talk to Pyro objects. <a href="http://pyro4.readthedocs.io/en/stable/tipstricks.html#pyro-via-http-and-json">Docs.</a></p>
</div>
<p><em>Note: performance isn't maxed; it is stateless. Does a name lookup and uses a new Pyro proxy for each request.</em></p>
<h2>Currently exposed contents of name server on {hostname}:</h2>
Expand Down

0 comments on commit b333d9e

Please sign in to comment.