Skip to content

Commit

Permalink
changing references to readthedocs.org to .io; left release notes unc…
Browse files Browse the repository at this point in the history
…hanged
  • Loading branch information
gwaldo committed Apr 29, 2016
1 parent b3a71b8 commit cb7bd35
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Graphite consists of three major components:

## Installation, Configuration and Usage

Please refer to the instructions at [readthedocs](http://graphite.readthedocs.org/).
Please refer to the instructions at [readthedocs](http://graphite.readthedocs.io/).

## License

Expand Down
8 changes: 4 additions & 4 deletions docs/config-local-settings.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ TIME_ZONE
Set your local timezone. Timezone is specified using `zoneinfo names <http://en.wikipedia.org/wiki/Zoneinfo#Names_of_time_zones>`_.

DOCUMENTATION_URL
`Default: http://graphite.readthedocs.org/`
`Default: http://graphite.readthedocs.io/`

Overrides the `Documentation` link used in the header of the Graphite Composer.

Expand Down Expand Up @@ -273,7 +273,7 @@ DASHBOARD_REQUIRE_PERMISSIONS
`Default: False`

If set to True, dashboards can only be saved or deleted by users having the appropriate (change or delete) permission (as set in the Django Admin app). These permissions can be set at the user or group level. Note that Django's 'add' permission is not used.

Note that DASHBOARD_REQUIRE_AUTHENTICATION must be set to true - if not, this setting is ignored.


Expand All @@ -297,15 +297,15 @@ See the `Django documentation <https://docs.djangoproject.com/en/dev/ref/setting
If you are experiencing problems, uncomment the following line in /opt/graphite/webapp/graphite/local_settings.py:

.. code-block:: none
# DEBUG = True
and review your webapp logs. If you're using the default graphite-example-vhost.conf, your logs will be found in /opt/graphite/storage/log/webapp/.

If you're using the default SQLite database, your webserver will need permissions to read and write to the database file. So, for example, if your webapp is running in Apache as the 'nobody' user, you will need to fix the permissions like this:

.. code-block:: none
sudo chown nobody:nobody /opt/graphite/storage/graphite.db
Expand Down
4 changes: 2 additions & 2 deletions docs/development.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ isolate projects between each other. This document uses virtualenv as the
lowest common denominator.

.. _virtualenv: http://www.virtualenv.org/
.. _virtualenvwrapper: http://virtualenvwrapper.readthedocs.org/
.. _virtualenvwrapper: http://virtualenvwrapper.readthedocs.io/

Create a virtualenv at the root of your graphite-web repository::

Expand Down Expand Up @@ -47,7 +47,7 @@ To run the tests for the Python and Django versions of your virtualenv::
If you want to run the tests for all combinations of Python and Django
versions, you can use the `tox`_ tool.

.. _tox: http://tox.readthedocs.org/
.. _tox: http://tox.readthedocs.io/

::

Expand Down
2 changes: 1 addition & 1 deletion docs/tools.rst
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ Other
.. _OpenTSDB: http://opentsdb.net/
.. _Orion: https://github.com/gree/Orion
.. _metrics-sampler: https://github.com/dimovelev/metrics-sampler
.. _Moira: http://moira.readthedocs.org
.. _Moira: http://moira.readthedocs.io
.. _New Relic: https://newrelic.com/platform
.. _Pencil: https://github.com/fetep/pencil
.. _pipe-to-graphite: https://github.com/iFixit/pipe-to-graphite
Expand Down
4 changes: 2 additions & 2 deletions misc/virtualenvwrapper/postactivate
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# postactivate hook for virtualenvwrapper (http://virtualenvwrapper.readthedocs.org/)
# postactivate hook for virtualenvwrapper (http://virtualenvwrapper.readthedocs.io/)
# Put this file on $WORKON_HOME/<name of the virtual env for this project>/bin/postactivate
# This file is sourced after the virtualenv is activated

Expand All @@ -18,4 +18,4 @@ export GRAPHITE_CONF_DIR=$VIRTUAL_ENV/conf/

unset PROJECT_DIR

$VIRTUAL_ENV/bin/django-admin.py syncdb --settings=graphite.settings --pythonpath=webapp
$VIRTUAL_ENV/bin/django-admin.py syncdb --settings=graphite.settings --pythonpath=webapp
4 changes: 2 additions & 2 deletions misc/virtualenvwrapper/postdeactivate
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# postdeactivate hook for virtualenvwrapper (http://virtualenvwrapper.readthedocs.org/)
# postdeactivate hook for virtualenvwrapper (http://virtualenvwrapper.readthedocs.io/)
# Put this file on $WORKON_HOME/<name of the virtual env for this project>/bin/postdeactivate
# This file is sourced after the virtualenv is deactivated

unset GRAPHITE_ROOT GRAPHITE_STORAGE_DIR GRAPHITE_CONF_DIR
unset GRAPHITE_ROOT GRAPHITE_STORAGE_DIR GRAPHITE_CONF_DIR
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
setup(
name='graphite-web',
version='0.10.0-alpha',
url='http://graphite.readthedocs.org',
url='http://graphite.readthedocs.io',
author='Chris Davis',
author_email='[email protected]',
license='Apache Software License 2.0',
Expand Down
2 changes: 1 addition & 1 deletion webapp/graphite/local_settings.py.example
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#TIME_ZONE = 'America/Los_Angeles'

# Override this to provide documentation specific to your Graphite deployment
#DOCUMENTATION_URL = "http://graphite.readthedocs.org/"
#DOCUMENTATION_URL = "http://graphite.readthedocs.io/"

# Metric data and graphs are cached for one minute by default
#DEFAULT_CACHE_DURATION = 60
Expand Down
2 changes: 1 addition & 1 deletion webapp/graphite/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@

#Miscellaneous settings
SMTP_SERVER = "localhost"
DOCUMENTATION_URL = "http://graphite.readthedocs.org/"
DOCUMENTATION_URL = "http://graphite.readthedocs.io/"
ALLOW_ANONYMOUS_CLI = True
LEGEND_MAX_ITEMS = 10
RRD_CF = 'AVERAGE'
Expand Down

0 comments on commit cb7bd35

Please sign in to comment.