From ed8a24dadfb232e14435c0154afdf4130a5a3c66 Mon Sep 17 00:00:00 2001 From: Adam Chainz Date: Thu, 2 Jun 2016 21:14:37 +0100 Subject: [PATCH 1/3] Convert readthedocs link for their .org -> .io migration for hosted projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit As per [their blog post of the 27th April](https://blog.readthedocs.com/securing-subdomains/) ‘Securing subdomains’: > Starting today, Read the Docs will start hosting projects from subdomains on the domain readthedocs.io, instead of on readthedocs.org. This change addresses some security concerns around site cookies while hosting user generated data on the same domain as our dashboard. Test Plan: Manually visited all the links I’ve modified. --- README.md | 6 +++--- docs/index.rst | 2 +- docs/overview.rst | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 61b95c8..9fb57d0 100644 --- a/README.md +++ b/README.md @@ -29,19 +29,19 @@ failure, enabling fault tolerance and high availability. - Subscribe to process statistics per process or process templates and get them in quasi RT. - Procfile applications support but also JSON config support. - Supervisor-like features. -- Fully evented. Use the libuv event loop using the [pyuv library](http://pyuv.readthedocs.org) +- Fully evented. Use the libuv event loop using the [pyuv library](https://pyuv.readthedocs.io) - Flapping: handle cases where your processes crash too much - Easily extensible: add your own endpoint, create your client, embed gaffer in your application, ... - Compatible with python 2.7x, 3.x ## Documentation -http://gaffer.readthedocs.org +https://gaffer.readthedocs.io ## Getting Started -http://gaffer.readthedocs.org/en/latest/getting-started.html +https://gaffer.readthedocs.io/en/latest/getting-started.html ## Installation diff --git a/docs/index.rst b/docs/index.rst index 8d1b64c..779b6a4 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -44,7 +44,7 @@ Features support. - Supervisor-like features. - Fully evented. Use the libuv event loop using the - `pyuv library `_ + `pyuv library `_ - Flapping: handle cases where your processes crash too much - Easily extensible: add your own endpoint, create your client, embed gaffer in your application, ... diff --git a/docs/overview.rst b/docs/overview.rst index 1ef360f..b13959c 100644 --- a/docs/overview.rst +++ b/docs/overview.rst @@ -12,7 +12,7 @@ Design Gaffer is internally based on an event loop using the `libuv `_ from Joyent via -the `pyuv binding `_ +the `pyuv binding `_ All gaffer events are added to the loop and processes asynchronously which make it pretty performant for handling & controlling multiple processes. From 5f1cf971facd867470cecab7c37d896dc73bafff Mon Sep 17 00:00:00 2001 From: Alexandre Conrad Date: Thu, 9 Feb 2017 18:58:35 -0800 Subject: [PATCH 2/3] typos and formatting --- README.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 9fb57d0..32cf06d 100644 --- a/README.md +++ b/README.md @@ -20,12 +20,10 @@ failure, enabling fault tolerance and high availability. - RESTful HTTP Api - Websockets and [SOCKJS](http://sockjs.org) support to interact with a gaffer node from any browser or SOCKJS client. -- Framework to manage and interact your applications and jobs on -- differerent machines -- Server and command-line tools to manage and interract with your processes -- manages topology information. Clients query gaffer_lookupd to discover gaffer nodes for a specific job or application. -- Possibility to interact with STDIO and PIPES to interact with your - applications and processes +- Framework to manage and interact your applications and jobs on differerent machines +- Server and command-line tools to manage and interact with your processes +- Manages topology information. Clients query gaffer_lookupd to discover gaffer nodes for a specific job or application. +- Possibility to interact with STDIO and PIPES to interact with your applications and processes - Subscribe to process statistics per process or process templates and get them in quasi RT. - Procfile applications support but also JSON config support. - Supervisor-like features. From a921d5a74f7d744d3b6bb03bf9654acdaca8ca1d Mon Sep 17 00:00:00 2001 From: Pablo Albornoz Date: Tue, 4 Jul 2017 20:52:13 -0400 Subject: [PATCH 3/3] removed deprecated pip option --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 87ad3d7..57d9d4e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,7 @@ python: - "3.3" install: - sudo apt-get install build-essential python-dev - - pip install -r requirements_dev.txt --use-mirrors + - pip install -r requirements_dev.txt - python setup.py install script: py.test branches: