Remove BitBucket source reference in docs

This commit is contained in:
Artur Barseghyan 2020-02-05 23:10:28 +01:00
parent 3b7ce67d1e
commit cda8383190
2 changed files with 8 additions and 18 deletions

View file

@ -217,12 +217,6 @@ Or latest stable version from GitHub:
pip install https://github.com/barseghyanartur/django-fobi/archive/stable.tar.gz
Or latest stable version from BitBucket:
.. code-block:: sh
pip install https://bitbucket.org/barseghyanartur/django-fobi/get/stable.tar.gz
(2) Add `fobi` to ``INSTALLED_APPS`` of the your projects' Django settings.
Furthermore, all themes and plugins to be used, shall be added to the
``INSTALLED_APPS`` as well. Note, that if a plugin has additional

View file

@ -217,12 +217,6 @@ Or latest stable version from GitHub:
pip install https://github.com/barseghyanartur/django-fobi/archive/stable.tar.gz
Or latest stable version from BitBucket:
.. code-block:: sh
pip install https://bitbucket.org/barseghyanartur/django-fobi/get/stable.tar.gz
(2) Add `fobi` to ``INSTALLED_APPS`` of the your projects' Django settings.
Furthermore, all themes and plugins to be used, shall be added to the
``INSTALLED_APPS`` as well. Note, that if a plugin has additional
@ -2390,22 +2384,24 @@ For PhantomJS you need to have NodeJS installed.
Set up ChromeDriver
~~~~~~~~~~~~~~~~~~~
1. Download ChromeDriver 42:
1. Download ChromeDriver version matching your browser. You can always find
proper version
at `chromedriver.chromium.org/downloads <https://chromedriver.chromium.org/downloads>`__:
.. code-block:: sh
wget https://chromedriver.storage.googleapis.com/2.42/chromedriver_linux64.zip
wget https://chromedriver.storage.googleapis.com/79.0.3945.36/chromedriver_linux64.zip
unzip chromedriver_linux64.zip
sudo mv chromedriver /usr/bin/chromedriver42
sudo chown root:root /usr/bin/chromedriver42
sudo chmod +x /usr/bin/chromedriver42
sudo mv chromedriver /usr/bin/chromedriver79
sudo chown root:root /usr/bin/chromedriver79
sudo chmod +x /usr/bin/chromedriver79
2. Specify the full path to your ChromeDriver in
``CHROME_DRIVER_EXECUTABLE_PATH`` setting. Example:
.. code-block:: python
CHROME_DRIVER_EXECUTABLE_PATH = '/usr/bin/chromedriver42'
CHROME_DRIVER_EXECUTABLE_PATH = '/usr/bin/chromedriver79'
After that your Selenium tests would work.