Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Commit 3bb2424

Browse files
committed
Merge branch 'master' into small-changes
2 parents 732e525 + 5130413 commit 3bb2424

File tree

262 files changed

+899
-838
lines changed

Some content is hidden

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

262 files changed

+899
-838
lines changed

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
GIT
22
remote: https://github.com/magento-devdocs/devdocs-theme.git
3-
revision: d2a43eecfe4fcf0586cc08ebe342bd9d5de8b41f
3+
revision: 84a3ed7f0df264a2c2086167efbd7d0545d329c4
44
specs:
5-
devdocs (3)
5+
devdocs (4)
66
jekyll (>= 3.3)
77

88
GEM

_checks/styles/style-rules-prod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
exclude_rule 'MD001'
1+
rule 'MD001'
22
exclude_rule 'MD002'
33
rule 'MD003', :style => :atx
44
exclude_rule 'MD004'
@@ -11,7 +11,7 @@ exclude_rule 'MD011'
1111
rule 'MD012'
1212
exclude_rule 'MD013'
1313
exclude_rule 'MD014'
14-
exclude_rule 'MD018'
14+
rule 'MD018'
1515
rule 'MD019'
1616
exclude_rule 'MD020'
1717
exclude_rule 'MD021'

_data/toc/installation-guide.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -410,9 +410,6 @@ pages:
410410
- label: PHP settings errors
411411
url: /install-gde/trouble/php/tshoot_php-set.html
412412

413-
- label: The PHP mcrypt extension is not installed properly
414-
url: /install-gde/trouble/php/tshoot_mcrypt.html
415-
416413
- label: During installation, PHP date warning
417414
url: /install-gde/trouble/php/tshoot_php-date.html
418415

_includes/install/web/install-web_4-customize-store.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
1. Click **Next**.
1919

20-
#### General module configuration options {#instgde-install-magento-web-step4-depend1}
20+
### General module configuration options {#instgde-install-magento-web-step4-depend1}
2121

2222
Modules are listed in **Advanced Modules Configuration** in alphabetical order; the order has nothing to do with dependencies.
2323

@@ -37,7 +37,7 @@ The following figure shows an example of disabling the `Magento_GoogleAnalytics`
3737

3838
![Disabling a module]({{ site.baseurl }}/common/images/install_wizard_disable-google.png)
3939

40-
#### Module dependency errors {#instgde-install-magento-web-step4-depend2}
40+
### Module dependency errors {#instgde-install-magento-web-step4-depend2}
4141

4242
A dependency error occurs when two inter-dependent modules are disabled at the same time.
4343

_videos/fundamentals/create-a-new-module.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ Let’s go through each of these steps in detail.
2121

2222
## Create the module folder
2323

24-
#### There are two possible locations for modules in Magento 2: the app/code folder and the vendor folder
24+
### There are two possible locations for modules in Magento 2: the app/code folder and the vendor folder
2525

2626
Depending on how Magento 2 has been installed, core modules can either be located in the `vendor/magento/magento-*`folders (for composer installation) or in the `app/code/Magento/` folder (for cloning GitHub).
2727

28-
#### Which of these locations should you choose for your new module?
28+
### Which of these locations should you choose for your new module?
2929

3030
If you build a module for a specific project, it is best to choose the app/code folder and commit to the project's repository.
3131

_videos/fundamentals/create-a-new-page.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Learning/HelloPage/registration.php
4949
Learning/HelloPage/etc/module.xml
5050
```
5151

52-
#### registration.php
52+
### registration.php
5353
```php
5454
<?php /**
5555
* Copyright © 2016 Magento. All rights reserved. * See COPYING.txt for license details.
@@ -59,7 +59,7 @@ __DIR__
5959
);
6060
```
6161

62-
#### module.xml
62+
### module.xml
6363
```xml
6464
<?xml version="1.0"?>
6565
<!--

common/css/devdocs.css

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
1+
/* Banner on top of the site header */
12
.message-banner {
23
margin: 0;
34
padding: 10px;
45
}
56

7+
/* Banner on top of the page for older versions */
8+
.message-banner.version-banner {
9+
margin-bottom: 15px;
10+
}
11+
12+
/* Info box on when the page was updated */
613
.page-updated {
714
margin: 0 0 10px 0;
815
color: #767676;
@@ -13,6 +20,7 @@
1320
width: 18px;
1421
height: 18px;
1522
}
23+
1624
/* Reference styles */
1725
.ref-list {
1826
margin-bottom: 2.5em;
@@ -22,12 +30,9 @@
2230
font-weight:500;
2331
}
2432

25-
/* Paragraph that represents a beginning of a procedure - should have an ordered list of steps following */
26-
.procedure {
33+
/* Paragraph that introduces important reference information (e.g., Related topics, Next step, Previous step), but does not qualify as a proper heading. Mimics the current H3 style */
34+
.ref-header {
2735
font-weight: bold;
28-
margin-left: 1.0em;
36+
font-size: 1.3em;
37+
margin: 1.5em 0 0.5em 0;
2938
}
30-
31-
.message-banner.version-banner {
32-
margin-bottom: 15px;
33-
}

guides/v2.2/advanced-reporting/data-collection.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,8 @@ It cannot contain any parameters.
196196
...
197197
```
198198

199-
## Related topics
199+
{:.ref-header}
200+
Related topics
200201

201202
[Modules providing advanced reporting][modules]
202203

guides/v2.2/advanced-reporting/overview.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ To avoid system overload during its prime time, you can set the preferable time
3030

3131
Though the Analytics module provides API, it is used specifically to interchange data with the MBI. We do not recommend to extend the advanced reporting functionality in this version.
3232

33-
## Related topics
33+
{:.ref-header}
34+
Related topics
3435

3536
[Magento modules that implement the functionality][modules]{:target="_blank"}
3637

guides/v2.2/architecture/archi_perspectives/ABasics_intro.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ The following discussion focuses on how these topics apply directly to Magento:
1515
* Event-driven architecture
1616
* Security
1717

18-
## Related topics
18+
{:.ref-header}
19+
Related topics
1920

2021
[Architectural diagrams]({{page.baseurl}}/architecture/archi_perspectives/arch_diagrams.html)
2122

0 commit comments

Comments
 (0)