Skip to content

Commit

Permalink
updated links in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
skiwichu committed Jan 28, 2019
1 parent ac4682a commit 7f21a38
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
ZSL is a Python micro-framework utilizing
[dependency injection](https://en.wikipedia.org/wiki/Dependency_injection)
for creating service applications on top of
[Flask](http://flask.pocoo.org/docs/0.11/) web framework and
[Flask](http://flask.pocoo.org/docs/0.12/) web framework and
[Gearman](http://gearman.org/) job server or
[Celery](http://http://www.celeryproject.org/) task queue.

Expand All @@ -28,9 +28,9 @@ to make it better.

## Installation

We recommend to install it trough [PyPi](https://pypi.python.org/pypi) and run it in
We recommend to install it trough [PyPi](https://pypi.org/) and run it in
a [virtualenv](https://docs.python.org/3/library/venv.html) or
[docker](https://docker.com) container.
[docker](https://www.docker.com/) container.

```bash
$ pip install zsl
Expand Down
4 changes: 2 additions & 2 deletions docs/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ Required fields
in these packages with given order.

* ``DATABASE_URI``
Database URL for `SQLAlchemy <http://sqlalchemy.org>`_'s
`crate_engine <http://docs.sqlalchemy.org/en/latest/core/engines.html#sqlalchemy.create_engine>`_.
Database URL for `SQLAlchemy <https://www.sqlalchemy.org/>`_'s
`crate_engine <https://docs.sqlalchemy.org/en/latest/core/engines.html#sqlalchemy.create_engine>`_.

* ``DATABASE_ENGINE_PROPS``
A dictionary of optional properties for the DB connection.
Expand Down
4 changes: 2 additions & 2 deletions docs/getting_started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ Getting started
Installation
------------

We recommend to install it trough `PyPi <https://pypi.python.org/pypi>`_ and
We recommend to install it trough `PyPi <https://pypi.org/>`_ and
run it in a `virtualenv <https://docs.python.org/3/library/venv.html>`_ or
`docker <https://docker.com>`_ container.
`docker <https://www.docker.com/>`_ container.

.. code-block:: console
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ZSL - z' service layer

ZSL is a Python 2.7 micro-framework utilizing
`dependency injection <https://en.wikipedia.org/wiki/Dependency_injection>`_
for creating service applications on top of `Flask <http://flask.pocoo.org/docs/0.11/>`_
for creating service applications on top of `Flask <http://flask.pocoo.org/docs/0.12/>`_
and `Gearman <http://gearman.org/>`_ job server.

Motivation
Expand Down
2 changes: 1 addition & 1 deletion src/zsl/contrib/alembic/alembic_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Alembic module is responsible for handling database migrations for SqlAlchemy
database backend. The complete documentation of the Alembic project,
all the options and command may be found `Alembic website
<http://alembic.zzzcomputing.com/en/latest/index.html>`_.
<https://alembic.sqlalchemy.org/en/latest/index.html>`_.
If you need database migrations just install `alembic` extra of `zsl`
package. Then you may use `alembic` commands from ZSL cli interface via
Expand Down
2 changes: 1 addition & 1 deletion src/zsl/task/task_decorator.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def jsonp_output_decorator(*args, **kwargs):
def jsend_output(fail_exception_classes=None):
"""
Format task result to json output in jsend specification format. See:
http://labs.omniti.com/labs/jsend. Task return value must be dict or None.
https://github.com/omniti-labs. Task return value must be dict or None.
@param fail_exception_classes: exceptions which will produce 'fail' response
status.
Expand Down

0 comments on commit 7f21a38

Please sign in to comment.