Commit 1c20c616 authored by Alex Willmer's avatar Alex Willmer Committed by David Wilson

docs: Convert all URLs that support https://

Excluded: graphml XML namespaces, links to e.g. Fabric homepage

Fixes #128
parent f8738f1c
...@@ -37,7 +37,7 @@ class ContextService(mitogen.service.Service): ...@@ -37,7 +37,7 @@ class ContextService(mitogen.service.Service):
configuration, creating a matching connection if it does not exist. configuration, creating a matching connection if it does not exist.
For connection methods and their parameters, refer to: For connection methods and their parameters, refer to:
http://mitogen.readthedocs.io/en/latest/api.html#context-factories https://mitogen.readthedocs.io/en/latest/api.html#context-factories
This concentrates all SSH connections in the top-level process, which may This concentrates all SSH connections in the top-level process, which may
become a bottleneck. There are multiple ways to fix that: become a bottleneck. There are multiple ways to fix that:
......
...@@ -12,7 +12,7 @@ BUILDDIR = _build ...@@ -12,7 +12,7 @@ BUILDDIR = _build
# User-friendly check for sphinx-build # User-friendly check for sphinx-build
ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1) ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1)
$(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from http://sphinx-doc.org/) $(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from https://sphinx-doc.org/)
endif endif
# Internal variables. # Internal variables.
......
...@@ -9,14 +9,14 @@ ...@@ -9,14 +9,14 @@
_paq.push(['trackPageView']); _paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']); _paq.push(['enableLinkTracking']);
(function() { (function() {
var u=(("https:" == document.location.protocol) ? "https" : "http") + "://37.187.23.96/tr/"; var u="https://k1.botanicus.net/tr/";
_paq.push(['setTrackerUrl', u+'ep']); _paq.push(['setTrackerUrl', u+'ep']);
_paq.push(['setSiteId', 6]); _paq.push(['setSiteId', 6]);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0]; g.type='text/javascript'; var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0]; g.type='text/javascript';
g.defer=true; g.async=true; g.src=u+'js'; s.parentNode.insertBefore(g,s); g.defer=true; g.async=true; g.src=u+'js'; s.parentNode.insertBefore(g,s);
})(); })();
</script> </script>
<noscript><p><img src="http://37.187.23.96/tr/ep?idsite=6" style="border:0" alt=""></p></noscript> <noscript><p><img src="https://k1.botanicus.net/tr/ep?idsite=6" style="border:0" alt=""></p></noscript>
<script async defer src="https://buttons.github.io/buttons.js"></script> <script async defer src="https://buttons.github.io/buttons.js"></script>
{% endblock %} {% endblock %}
...@@ -86,7 +86,7 @@ Installation ...@@ -86,7 +86,7 @@ Installation
1. Verify Ansible 2.4 and Python 2.7 are listed in the output of ``ansible 1. Verify Ansible 2.4 and Python 2.7 are listed in the output of ``ansible
--version`` --version``
2. Download and extract http://github.com/dw/mitogen/archive/master.zip 2. Download and extract https://github.com/dw/mitogen/archive/master.zip
3. Modify ``ansible.cfg``: 3. Modify ``ansible.cfg``:
.. code-block:: dosini .. code-block:: dosini
...@@ -114,7 +114,7 @@ High Risk ...@@ -114,7 +114,7 @@ High Risk
the first playbook step will simply run unnecessarily slowly. the first playbook step will simply run unnecessarily slowly.
* `Asynchronous Actions And Polling * `Asynchronous Actions And Polling
<http://docs.ansible.com/ansible/latest/playbooks_async.html>`_ has received <https://docs.ansible.com/ansible/latest/playbooks_async.html>`_ has received
minimal testing. minimal testing.
* For now only **built-in Python command modules work**, however almost all * For now only **built-in Python command modules work**, however almost all
......
...@@ -94,7 +94,7 @@ def main(log_level='INFO'): ...@@ -94,7 +94,7 @@ def main(log_level='INFO'):
@mitogen.main() @mitogen.main()
def main(router): def main(router):
z = router.ssh(hostname='k3') z = router.ssh(hostname='k3')
print z.call(get_url, 'http://www.google.com/') print z.call(get_url, 'https://www.google.com/')
""" """
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment