Skip to content

Commit

Permalink
Merge pull request #32488 from thomasnares/fixReferencesDevdocs
Browse files Browse the repository at this point in the history
Fix references to devdocs (from devdocs.prestashop.com to devdocs.prestashop-project.org)
  • Loading branch information
matks committed May 10, 2023
2 parents e55bcee + 2c567bb commit b7053d5
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/1_bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ body:
- type: markdown
attributes:
value: |
Thank you for taking the time to fill out this bug report. Please take the time to provide as much details as possible. Following our [bug report guidelines](https://devdocs.prestashop.com/8/contribute/contribute-reporting-issues/#best-practices-for-writing-an-issue) will help maintainers qualify your report faster.
Thank you for taking the time to fill out this bug report. Please take the time to provide as much details as possible. Following our [bug report guidelines](https://devdocs.prestashop-project.org/8/contribute/contribute-reporting-issues/#best-practices-for-writing-an-issue) will help maintainers qualify your report faster.
Reporting bugs with "error 500" or "white page" may not help us reproduce them. This is a universal error that hides what is underneath. Instead, enable debug mode in the Performance section of PrestaShop and try again. You should get a proper error message.
Expand Down
4 changes: 2 additions & 2 deletions INSTALL.txt
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@

To install PrestaShop 8, you need a web server running PHP 7.2+ and any flavor of MySQL 5.6+ (MySQL, MariaDB, Percona Server, etc.).

You can find more information on our System requirements (https://devdocs.prestashop.com/8/basics/installation/system-requirements/) page and on the System Administrator Guide (https://docs.prestashop-project.org/1-6-documentation/english-documentation/system-administrator-guide).
You can find more information on our System requirements (https://devdocs.prestashop-project.org/8/basics/installation/system-requirements/) page and on the System Administrator Guide (https://docs.prestashop-project.org/1-6-documentation/english-documentation/system-administrator-guide).

=== Installing PrestaShop

Expand Down Expand Up @@ -76,7 +76,7 @@ Enjoy your store :)
Essential links about PrestaShop:

* User Guide: https://docs.prestashop-project.org/1.7-documentation/user-guide
* Tech docs (modules & themes): https://devdocs.prestashop.com/
* Tech docs (modules & themes): https://devdocs.prestashop-project.org/
* Official blog: https://www.prestashop.com/en/blog
* Developer blog: https://build.prestashop.com/
* Get community support: https://www.prestashop.com/forums/
Expand Down
2 changes: 1 addition & 1 deletion classes/webservice/WebserviceRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class WebserviceRequestCore
*
* @var string
*/
protected $_docUrl = 'https://devdocs.prestashop.com/8/webservice';
protected $_docUrl = 'https://devdocs.prestashop-project.org/8/webservice';

/**
* Set if the authentication key was checked.
Expand Down
2 changes: 1 addition & 1 deletion install-dev/theme/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
*/

$documentationLink = 'https://devdocs.prestashop.com/';
$documentationLink = 'https://devdocs.prestashop-project.org/';
$blogLink = 'https://build.prestashop.com/';

return [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
{% endblock %}

{% block webservice_api_status %}
{% set devdocUrl = 'https://devdocs.prestashop.com/8/webservice/' %}
{% set devdocUrl = 'https://devdocs.prestashop-project.org/8/webservice/' %}

{% if webserviceStatus.isEnabled == true %}
<div class="card">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
</label>
<div class="col-sm">
<small class="form-text">
{{ 'Check the [a]developer documentation[/a] for setup instructions.'|trans({'[a]': '<a href="https://devdocs.prestashop.com/1.7/faq/pricing/#refresh-exchange-rates" target="_blank">', '[/a]': '</a>'}, 'Admin.International.Notification')|raw }}
{{ 'Check the [a]developer documentation[/a] for setup instructions.'|trans({'[a]': '<a href="https://devdocs.prestashop-project.org/8/faq/pricing/#refresh-exchange-rates" target="_blank">', '[/a]': '</a>'}, 'Admin.International.Notification')|raw }}
</small>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
<b>Resources</b>
<span>
{% set appVersion = collector.applicationversion|join()[:1] %}
<a href="https://devdocs.prestashop.com/{{ appVersion }}/" rel="help">
<a href="https://devdocs.prestashop-project.org/{{ appVersion }}/" rel="help">
Read PrestaShop {{ collector.applicationversion }} Docs
</a>
</span>
Expand Down Expand Up @@ -225,7 +225,7 @@
<b>Resources</b>
<span>
{% set appVersion = collector.applicationversion|join()[:1] %}
<a href="https://devdocs.prestashop.com/{{ appVersion }}/" rel="help">
<a href="https://devdocs.prestashop-project.org/{{ appVersion }}/" rel="help">
Read PrestaShop {{ collector.applicationversion }} Docs
</a>
</span>
Expand Down
2 changes: 1 addition & 1 deletion tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ We use [Mocha](https://mochajs.org/), [Playwright](https://github.com/microsoft/

## How to write e2e tests

Please refer to our [documentation](https://devdocs.prestashop.com/8/testing/ui-tests/how-to-contribute-and-create-ui-tests/).
Please refer to our [documentation](https://devdocs.prestashop-project.org/8/testing/ui-tests/how-to-contribute-and-create-ui-tests/).

# Unit tests

Expand Down

0 comments on commit b7053d5

Please sign in to comment.