1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-18 23:42:25 +02:00

Fix links to docs

This commit is contained in:
Hillel Coren 2018-07-26 18:41:30 +03:00
parent 925ea5109a
commit 7401e632b4
5 changed files with 10 additions and 8 deletions

View File

@ -5,7 +5,7 @@
# Invoice Ninja
[![Build Status](https://travis-ci.org/invoiceninja/invoiceninja.svg?branch=master)](https://travis-ci.org/invoiceninja/invoiceninja)
[![Docs](https://readthedocs.org/projects/invoice-ninja/badge/?version=latest)](http://docs.invoiceninja.com/en/latest/?badge=latest)
[![Docs](https://readthedocs.org/projects/invoice-ninja/badge/?version=latest)](https://invoice-ninja.readthedocs.io/en/latest/?badge=latest)
## [Hosted](https://www.invoiceninja.com) | [Self-Hosted](https://www.invoiceninja.org)
@ -17,7 +17,7 @@ The self-host zip includes all third party libraries whereas downloading the cod
* [Features](https://www.invoiceninja.com/invoicing-features/)
* [Videos](https://www.youtube.com/channel/UCXAHcBvhW05PDtWYIq7WDFA/videos)
* [User Guide](http://docs.invoiceninja.com/en/latest/)
* [User Guide](https://invoice-ninja.readthedocs.io/en/latest/)
* [Support Forum](https://www.invoiceninja.com/forums/forum/support/)
* [Roadmap](https://trello.com/b/63BbiVVe/)
@ -37,7 +37,7 @@ The self-host zip includes all third party libraries whereas downloading the cod
## Installation Options
* [Ansible](https://github.com/invoiceninja/ansible-installer)
* [Self-Host Zip](http://docs.invoiceninja.com/en/latest/install.html)
* [Self-Host Zip](https://invoice-ninja.readthedocs.io/en/latest/install.html)
* [Docker File](https://hub.docker.com/r/invoiceninja/invoiceninja/)
* [Cloudron](https://cloudron.io/store/com.invoiceninja.cloudronapp.html)
* [Softaculous](https://www.softaculous.com/apps/ecommerce/Invoice_Ninja)
@ -47,10 +47,10 @@ The self-host zip includes all third party libraries whereas downloading the cod
* [Postmark](https://postmarkapp.com/)
## Development
* [API Documentation](http://docs.invoiceninja.com/en/latest/api.html)
* [API Documentation](https://invoice-ninja.readthedocs.io/en/latest/api.html)
* [PHP SDK](https://github.com/invoiceninja/sdk-php)
* [Zend Framework](https://github.com/alexz707/InvoiceNinjaModule)
* [Custom Module](http://docs.invoiceninja.com/en/latest/custom_modules.html) | [Watch Video](https://www.youtube.com/watch?v=8jJ-PYuq85k)
* [Custom Module](https://invoice-ninja.readthedocs.io/en/latest/custom_modules.html) | [Watch Video](https://www.youtube.com/watch?v=8jJ-PYuq85k)
## Third Party Modules
* [Event Scheduler](https://github.com/cytech/Scheduler-InvoiceNinja)

View File

@ -359,7 +359,7 @@ if (! defined('APP_NAME')) {
define('NINJA_GATEWAY_CONFIG', 'NINJA_GATEWAY_CONFIG');
define('NINJA_WEB_URL', env('NINJA_WEB_URL', 'https://www.invoiceninja.com'));
define('NINJA_APP_URL', env('NINJA_APP_URL', 'https://app.invoiceninja.com'));
define('NINJA_DOCS_URL', env('NINJA_DOCS_URL', 'http://docs.invoiceninja.com/en/latest'));
define('NINJA_DOCS_URL', env('NINJA_DOCS_URL', 'https://invoice-ninja.readthedocs.io/en/latest'));
define('NINJA_DATE', '2000-01-01');
define('NINJA_VERSION', '4.5.1' . env('NINJA_VERSION_SUFFIX'));
define('NINJA_TERMS_VERSION', '1.0.1');

View File

@ -95,6 +95,8 @@ class Gateway extends Eloquent
'sandbox',
// Payfast
'pdtKey',
// Realex
'3dSecure',
];
/**

View File

@ -79,7 +79,7 @@ Once you can access the site the initial setup screen will enable you to configu
Step 5: Configure the application
"""""""""""""""""""""""""""""""""
See the `details here <http://docs.invoiceninja.com/en/latest/configure.html>`_ for additional configuration options.
See the `details here <https://invoice-ninja.readthedocs.io/en/latest/configure.html>`_ for additional configuration options.
Step 6: Enable auto updates
"""""""""""""""""""""""""""

View File

@ -50,7 +50,7 @@
->value(1)
->help(Utils::isNinjaProd() ? '' : (config('pdf.phantomjs.bin_path') ? (config('pdf.phantomjs.cloud_key') ? trans('texts.phantomjs_local_and_cloud') : trans('texts.phantomjs_local')) : trans('texts.phantomjs_help', [
'link_phantom' => link_to('https://phantomjscloud.com/', 'phantomjscloud.com', ['target' => '_blank']),
'link_docs' => link_to('http://docs.invoiceninja.com/en/latest/configure.html#phantomjs', 'PhantomJS', ['target' => '_blank'])
'link_docs' => link_to('https://invoice-ninja.readthedocs.io/en/latest/configure.html#phantomjs', 'PhantomJS', ['target' => '_blank'])
])) . ' | ' . link_to('/test_headless', trans('texts.test'), ['target' => '_blank'])) !!}
{!! Former::checkbox('document_email_attachment')