Skip to content

Commit 3f1b4d0

Browse files
DOC-2096: Remove CRM mentions and (DOC-2097) the :scale: image parameter from documentation (#36465)
1 parent e2b5ae4 commit 3f1b4d0

File tree

692 files changed

+235
-1505
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

692 files changed

+235
-1505
lines changed

api/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
:oro_show_local_toc: false
22

3-
:title: OroCommerce and OroCRM Web API Development
3+
:title: Oro Application Web API Development
44

55
.. meta::
66
:description: WebAPI engine architecture and backend developer guides

backend/api/storefront-routes.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
:oro_documentation_types: OroCommerce
2-
31
.. _web-api--storefront-routes:
42

53
Storefront Routes

backend/api/storefront.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
:oro_documentation_types: OroCommerce
2-
31
.. _web-api--storefront:
42

53
Storefront REST API

backend/architecture/custom-application.rst

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,19 @@ Custom Oro Application
99

1010
No two businesses are alike. This motto is part of Oro's product philosophy, which is why flexibility is one of
1111
the fundamental principles driving architecture. Depending on what you are planning to build, you can
12-
create your custom application with minimum functions starting either with |OroPlatform|, or |OroCRM|, or
13-
|OroCommerce| application as a baseline. No matter what is your starting point, there is no difference
14-
in the customization process.
12+
create your custom application with minimum functions starting with the |OroCommerce| application as a baseline.
1513

1614
Application Repository and Installation
1715
---------------------------------------
1816

1917
Before you start working on a new project, it is essential to have a version control system in place.
20-
The easiest way to start is to |fork application repository| of |OroPlatform|, |OroCRM| or |OroCommerce| on GitHub.
18+
The easiest way to start is to |fork application repository| of |OroCommerce| on GitHub.
2119

2220
Once code repository is ready, please follow :ref:`installation <installation>` instructions.
2321

2422
.. note::
2523

26-
A newly created application repository should be used instead of the |https://github.com/orocrm/crm-application.git|
24+
A newly created application repository should be used instead of the |https://github.com/oroinc/orocommerce-application.git|
2725

2826
You can use development mode to work on customizations when your application is up and running. To warm up the
2927
application cache in development mode, please run:
@@ -33,15 +31,15 @@ application cache in development mode, please run:
3331
php bin/console cache:clear --env=dev
3432
3533
To access the application in development mode, add `index_dev.php` to the base URL
36-
(example: ``http://orocrm.example.com/index_dev.php``).
34+
(example: ``http://orocommerce.example.com/index_dev.php``).
3735

3836
.. _application-custom-code:
3937

4038
Application Custom Code
4139
-----------------------
4240

4341
Oro application structure is based on |Symfony Standard Edition| and we highly recommend to follow
44-
|Symfony Best Practices| for any custom application you build on top of OroPlatform, OroCRM, or OroCommerce.
42+
|Symfony Best Practices| for any custom application you build on top OroCommerce.
4543

4644
In the root folder of your application, there is an `src` folder. Use it as a working directory
4745
for your custom project and put your custom code there. Like in Symfony applications, all custom code in the Oro application

backend/architecture/customization/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ Once your customization is ready, you can publish it in a dedicated repository t
201201
Customize via UI
202202
^^^^^^^^^^^^^^^^
203203

204-
For data model and business process customization, Oro applications provide the entity and workflow management tools in the web UI (e.g., OroCRM and OroCommerce back-office). You can use these tools for quick updates of the existing data structure, for example, to add a new field to the existing entity data, change the value options, etc.) and enable easy and fast prototyping, for example, for A/B testing of new business process automation.
204+
For data model and business process customization, Oro applications provide the entity and workflow management tools in the web UI (e.g., OroCommerce back-office). You can use these tools for quick updates of the existing data structure, for example, to add a new field to the existing entity data, change the value options, etc.) and enable easy and fast prototyping, for example, for A/B testing of new business process automation.
205205

206206
.. warning:: Results of the customization via UI are stored in the database. Porting such customization from staging to the production environment happens on the database level using data migration. Compared to programmatic customization, customization via UI lacks versioning and portability. Please consider using the source code level customization to keep the upgrade process simple.
207207

backend/architecture/differences.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Differences to Common Symfony Applications
44
==========================================
55

6-
Starting your first project using OroPlatform or OroCRM will be easy if you're familiar with building Symfony applications from scratch. However,
6+
Starting your first project using OroPlatform will be easy if you're familiar with building Symfony applications from scratch. However,
77
there are some differences you need to understand to develop your application efficiently.
88

99
This article will give you a short overview of how OroPlatform differs from typical Symfony applications. Each section will link to other resources where you can learn more about a particular feature.

backend/architecture/framework/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Related Cookbook Articles
8888
* :ref:`Create Custom Oro Application <dev-cookbook-create-custom-oro-application>`
8989
* :ref:`Create a Simple CRUD <dev-cookbook-framework-create-simple-crud>`
9090
* :ref:`How to Create a New Bundle <dev-cookbook-framework-how-to-create-new-bundle>`
91-
* :ref:`How to Add an Extension to the OroCRM Extensions Store <dev-cookbook-framework-how-to-add-extension-to-marketplace>`
91+
* :ref:`How to Add an Extension to the Oro Extensions Store <dev-cookbook-framework-how-to-add-extension-to-marketplace>`
9292
* :ref:`How to Manage OroPlatform Extensions <dev-cookbook-framework-how-to-manage-extensions>`
9393

9494
.. toctree::

backend/architecture/index.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
:title: OroCommerce, OroCRM, OroPlatform Architecture Developer Guide
1+
:title: Oro Application Architecture Developer Guide
22

33
.. meta::
4-
:description: Fundamentals of the OroCommerce, OroCRM, and OroPlatform applications architecture for the backend developers
4+
:description: Fundamentals of the Oro applications architecture for the backend developers
55

66
.. _architecture-guide:
77

@@ -23,7 +23,7 @@ With these out-of-the-box benefits, developers can focus on implementing their u
2323
Oro Licensing
2424
~~~~~~~~~~~~~
2525

26-
Community versions of OroCRM and OroCommerce are distributed under the |OSL-3.0| license. The community edition of OroPlatform is distributed under the |MIT| license. Enterprise editions of OroCRM, OroCommerce, and OroPlatform are distributed under a custom End User License Agreement.
26+
Community versions of Oro applications are distributed under the |OSL-3.0| license. The community edition of OroPlatform is distributed under the |MIT| license. Enterprise editions of Oro applications are distributed under a custom End User License Agreement.
2727

2828
.. _architecture-overview:
2929

backend/architecture/structure/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Sample applications: |OroCRM|, |OroCommerce|, |OroPlatform|.
2828

2929
A **package** repository contains a module that groups a set of ready-to-use features, usually those related to a particular business subdomain, and may be included in any Oro application. To enable an Oro package in the Oro application, add it as a dependency/prerequisite before you start the Oro application installation. As long as the Oro application uses the Symfony framework, packages may contain |Bundles|.
3030

31-
For example, the |Marketing| package is, by default, enabled in OroCRM and OroCommerce applications.
31+
For example, the |Marketing| package is, by default, enabled in Oro applications.
3232

3333
A component repository contains the source code of the reusable development module that enables a set of commonly used functions that you can use as third-party libraries without the Oro application. Rather than a complete business feature, the Oro component can handle generic functionality that is not bound to the business domain. Component repositories are typically published as read-only subtree distributions of independent package bundles or components.
3434

backend/automated-tests/debug-behat-tests.rst

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ Behat can integrate with debugging tools like Xdebug or Zend Debugger. By config
5151
An example of setting up a debugging environment:
5252

5353
.. image:: /img/backend/tests/behat_configuration.png
54-
:scale: 70
5554
:alt: Behat configuration
5655

5756
Running a Group of Behat Tests
@@ -60,7 +59,6 @@ Running a Group of Behat Tests
6059
You can also run a group of tests. For this purpose, mark them with the right tag (for example, @failed-behat-test) and run the test with it.
6160

6261
.. image:: /img/backend/tests/behat_configuration_with_tag.png
63-
:scale: 73
6462
:alt: Behat configuration with tag
6563

6664
Taking Screenshots
@@ -135,5 +133,4 @@ Debugging behat tests is an essential skill for ensuring the reliability and eff
135133
.. hint:: The screenshots created during failed Behat tests include the cursor the last position mouse when moving the mouse around, except for situations when there are alerts on the page. This helps identify where the failure occurred, making it quicker to take corrective action.
136134

137135
.. image:: /img/backend/tests/cursor_position_at_failed_behat_tests.png
138-
:scale: 55
139136
:alt: Cursor position at failed behat tests

0 commit comments

Comments
 (0)