docs: Change some http:// URLs to https://
This commit is contained in:
@@ -10,7 +10,7 @@ See also the `Github Homepage`_ and the `Updates Blog`_
|
||||
|
||||
.. _Github Homepage: https://github.com/overviewer/Minecraft-Overviewer
|
||||
|
||||
.. _Updates Blog: http://overviewer.org/blog/
|
||||
.. _Updates Blog: https://overviewer.org/blog/
|
||||
|
||||
Introduction
|
||||
============
|
||||
@@ -24,7 +24,7 @@ and many plugins for even more features! It is written mostly in Python with
|
||||
critical sections in C as an extension module.
|
||||
|
||||
For a simple example of what your renders will look like, head over to `The
|
||||
"Exmaple" Map <http://overviewer.org/example/>`_. For more user-contributed
|
||||
"Exmaple" Map <https://overviewer.org/example/>`_. For more user-contributed
|
||||
examples, see `The Example Wiki Page <https://github.com/overviewer/Minecraft-Overviewer/wiki/Map-examples>`_.
|
||||
|
||||
.. image:: front_page_screenshot.png
|
||||
|
||||
@@ -8,7 +8,7 @@ If you want to build the Overviewer from source yourself, head to :doc:`Building
|
||||
:doc:`running`.
|
||||
|
||||
The latest prebuilt packages for various systems will always be found
|
||||
at the `Overviewer Downloads <http://overviewer.org/downloads>`_ page.
|
||||
at the `Overviewer Downloads <https://overviewer.org/downloads>`_ page.
|
||||
|
||||
|
||||
Windows
|
||||
@@ -16,7 +16,7 @@ Windows
|
||||
Running Windows and don't want to compile the Overviewer? You've come to the
|
||||
right place!
|
||||
|
||||
1. Head to the `Downloads <http://overviewer.org/downloads>`_ page and download the most recent Windows download for your architecture (32 or 64 bit).
|
||||
1. Head to the `Downloads <https://overviewer.org/downloads>`_ page and download the most recent Windows download for your architecture (32 or 64 bit).
|
||||
|
||||
2. For 32 bit you may need to install the `VC++ 2008 <http://www.microsoft.com/downloads/en/details.aspx?FamilyID=9b2da534-3e03-4391-8a4d-074b9f2bc1bf>`_ and `VC++ 2010 <http://www.microsoft.com/downloads/en/details.aspx?familyid=a7b7a05e-6de6-4d3a-a423-37bf0912db84>`_ redistributables.
|
||||
|
||||
@@ -33,14 +33,14 @@ a ``python2.6`` package. To do this, add the following line to your
|
||||
|
||||
::
|
||||
|
||||
deb http://overviewer.org/debian ./
|
||||
deb https://overviewer.org/debian ./
|
||||
|
||||
Our APT repository is signed. To install the key (and allow for
|
||||
automatic updates), run
|
||||
|
||||
::
|
||||
|
||||
wget -O - http://overviewer.org/debian/overviewer.gpg.asc | sudo apt-key add -
|
||||
wget -O - https://overviewer.org/debian/overviewer.gpg.asc | sudo apt-key add -
|
||||
|
||||
Then run ``apt-get update`` and ``apt-get install minecraft-overviewer`` and
|
||||
you're all set! See you at the :doc:`running` page!
|
||||
@@ -52,7 +52,7 @@ distros. To add the Overviewer repository to YUM, just run
|
||||
|
||||
::
|
||||
|
||||
wget -O /etc/yum.repos.d/overviewer.repo http://overviewer.org/rpms/overviewer.repo
|
||||
wget -O /etc/yum.repos.d/overviewer.repo https://overviewer.org/rpms/overviewer.repo
|
||||
|
||||
Then to install Overviewer run
|
||||
|
||||
|
||||
@@ -92,7 +92,7 @@ Here's an example that displays icons for each player::
|
||||
|
||||
def playerIcons(poi):
|
||||
if poi['id'] == 'Player':
|
||||
poi['icon'] = "http://overviewer.org/avatar/%s" % poi['EntityId']
|
||||
poi['icon'] = "https://overviewer.org/avatar/%s" % poi['EntityId']
|
||||
return "Last known location for %s" % poi['EntityId']
|
||||
|
||||
Note how each POI can get a different icon by setting ``poi['icon']``. These icons must exist in either
|
||||
|
||||
@@ -25,7 +25,7 @@ Now that you know how to open a command line, and haven't been scared off yet,
|
||||
the next step is to download the latest Overviewer.
|
||||
|
||||
**Step 2:** Download Overviewer
|
||||
Go to the `Downloads Page <http://overviewer.org/downloads>`_ and
|
||||
Go to the `Downloads Page <https://overviewer.org/downloads>`_ and
|
||||
download the *latest* version for your architecture, either 32 bit
|
||||
or 64 bit.
|
||||
|
||||
@@ -141,7 +141,7 @@ yet.
|
||||
The preferred way to run The Overviewer is with a *configuration file*. Without
|
||||
one, you can only do the most basic of renders. Once you're ready, head to the
|
||||
:doc:`../config` page to see what else The Overviewer can do. And as always,
|
||||
feel free to drop by in `IRC <http://overviewer.org/irc/>`_ if you have any
|
||||
feel free to drop by in `IRC <https://overviewer.org/irc/>`_ if you have any
|
||||
questions! We're glad to help!
|
||||
|
||||
Common Pitfalls
|
||||
@@ -175,9 +175,9 @@ Using GitHub Gist
|
||||
|
||||
Sometimes, when helping people with issues with Overviewer, we'll often
|
||||
ask to see the config file you're using, or, if there was an Overviewer
|
||||
error, a full copy of an error message. Unfortunately, `IRC <http://overviewer.org/irc/>`_
|
||||
error, a full copy of an error message. Unfortunately, `IRC <https://overviewer.org/irc/>`_
|
||||
is not a good way to send large amounts of text. So we often ask users
|
||||
to create a `Gist <http://gist.github.com/>`_ containing the text we want
|
||||
to create a `Gist <https://gist.github.com/>`_ containing the text we want
|
||||
to see. Sites like these are also called Pastebins, and you are welcome
|
||||
to use your favorite pastebin site, if you'd like.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user