Skip to content

Commit d04257e

Browse files
authored
Merge pull request magento#2363 from magento-devdocs/merge-live-search
Publish live search
2 parents 73a0930 + 7d166a1 commit d04257e

Some content is hidden

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

56 files changed

+2013
-62
lines changed

_config.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,8 +227,12 @@ mage2bloburl: https://github.com/magento/magento2/blob
227227
# Current version
228228
gdeurl: /guides/v2.4
229229

230-
# Path to S3 location where we store large downloadable binary files, such as .ai, .psd, .zip, .pdf, .sketch
230+
# URL to downloadable binary files, such as .ai, .psd, .zip, .pdf, .sketch
231231
downloads: https://devdocs.magento.com/download
232232

233+
# URL to the User guide
234+
user_guide_url: https://docs-beta.magento.com/user-guide
235+
236+
# Patterns to exclude for Jekyll
233237
exclude:
234238
- .git

src/_data/main-nav.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -195,13 +195,17 @@
195195
- label: Checkout
196196
url: /howdoi/checkout/checkout_overview.html
197197

198+
- label: Inventory Management
199+
url: /inventory/index.html
200+
201+
- label: Live Search
202+
url: /live-search/overview.html
203+
versionless: true
204+
198205
- label: Magento Marketplace
199206
url: /marketplace/sellers/getting-started.html
200207
versionless: true
201208

202-
- label: Inventory Management
203-
url: /inventory/index.html
204-
205209
- label: Order Management
206210
url: http://omsdocs.magento.com/en/
207211

src/_data/toc/live-search.yml

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
label: Live Search
2+
pages:
3+
- label: Overview
4+
url: /live-search/overview.html
5+
versionless: true
6+
7+
- label: Install Live Search
8+
url: /live-search/install.html
9+
versionless: true
10+
11+
- label: Configure and Connect
12+
url: /live-search/config-connect.html
13+
versionless: true
14+
15+
- label: Storefront Popover
16+
url: /live-search/storefront-popover.html
17+
versionless: true
18+
19+
- label: Facets
20+
url: /live-search/facets.html
21+
versionless: true
22+
23+
- label: Synonyms
24+
url: /live-search/synonyms.html
25+
versionless: true
26+
27+
- label: Rules
28+
url: /live-search/rules.html
29+
versionless: true
30+
31+
- label: Indexing
32+
url: /live-search/indexing.html
33+
versionless: true
34+
35+
- label: GraphQL
36+
children:
37+
- label: GraphQL Support
38+
url: /live-search/graphql-support.html
39+
versionless: true
40+
41+
- label: attributeMetadata query
42+
url: /live-search/attribute-metadata.html
43+
versionless: true
44+
45+
- label: productSearch query
46+
url: /live-search/product-search.html
47+
versionless: true
48+
49+
- label: Release Notes
50+
url: /live-search/release-notes.html
51+
versionless: true

src/_data/toc/release-notes.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -114,18 +114,21 @@ pages:
114114
- label: Inventory Management
115115
url: /inventory/release-notes.html
116116

117+
- label: Live Search
118+
url: /live-search/release-notes.html
119+
versionless: true
120+
117121
- label: Page Builder
118122
url: /page-builder/docs/release-notes.html
119123
versionless: true
120-
124+
125+
- label: Product Recommendations
126+
url: /recommendations/release-notes.html
127+
versionless: true
128+
121129
- label: Sales Channels
122130
children:
123131

124132
- label: Amazon
125133
url: /extensions/amazon-sales/release-notes/
126134
versionless: true
127-
128-
- label: Product Recommendations
129-
url: /recommendations/release-notes.html
130-
versionless: true
131-

src/_includes/install/maria-db.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Reindexing on MariaDB 10.4 takes more time compared to other MariaDB or MySQL versions. See [Configuration best practices]({{ site.baseurl }}/guides/v2.4/performance-best-practices/configuration.html#indexers).
1+
Reindexing on MariaDB 10.4 takes more time compared to other MariaDB or MySQL versions. See [Configuration best practices]({{ site.baseurl }}{{ site.gdeurl }}/performance-best-practices/configuration.html#indexers).

src/_videos/fundamentals/add-new-product-attribute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ Basic instructions for creating a product attribute by setup or upgrade script c
351351

352352
For use case `1` (an 'immutable' set of options), follow the above instructions ["Add a source model"](#AddSourceModel). You will create a model that contains and dynamically returns the attribute's selectable options to the client.
353353

354-
For use case `2` (a 'mutable' set of options), see ["EAV and extension attributes"]({{ site.baseurl }}/guides/v2.4/extension-dev-guide/attributes.html). Make sure to declare 'Magento\Eav\Model\Entity\Attribute\Source\Table' as the value for the 'source' attribute option. This ensures that Magento will store options in the appropriate database table.
354+
For use case `2` (a 'mutable' set of options), see ["EAV and extension attributes"]({{ site.baseurl }}{{ site.gdeurl }}/extension-dev-guide/attributes.html). Make sure to declare 'Magento\Eav\Model\Entity\Attribute\Source\Table' as the value for the 'source' attribute option. This ensures that Magento will store options in the appropriate database table.
355355

356356
With `\Magento\Eav\Setup\EavSetup.php::addAttribute()` and `\Magento\Eav\Setup\EavSetup.php::addAttributeOptions()` you can add a series of options with the following array:
357357

src/cloud/live/sens-data-over.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,4 +195,4 @@ This process **overwrites** the store configuration; only do the following if th
195195
[Pipeline deployment]: {{ site.baseurl }}/guides/v2.3/config-guide/deployment/pipeline/technical-details.html
196196
[quick]: {{ site.baseurl }}/cloud/env/variables-build.html#scd_strategy
197197
[scd]: {{ site.baseurl }}/cloud/deploy/static-content-deployment.html
198-
[Sensitive or system-specific settings]: {{ site.baseurl }}/guides/v2.4/config-guide/prod/config-reference-sens.html
198+
[Sensitive or system-specific settings]: {{ site.baseurl }}{{ site.gdeurl }}/config-guide/prod/config-reference-sens.html

src/cloud/project/magento-app-php-application.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ The following table shows the supported PHP extensions when deploying {{site.dat
4848
|--------------------|---------------------|---------------------|
4949
| `bcmath`<br> `bz2`<br> `calendar`<br> `exif`<br> `gd`<br> `gettext`<br> `intl`<br> `mysqli`<br> `pcntl`<br> `pdo_mysql`<br> `soap`<br> `sockets`<br> `sysvmsg`<br> `sysvsem`<br> `sysvshm`<br> `opcache`<br> `zip` |`ctype`<br> `curl`<br> `date`<br> `dom`<br> `fileinfo`<br> `filter`<br> `ftp`<br> `hash`<br> `iconv`<br> `json`<br> `mbstring`<br> `mysqlnd`<br> `openssl`<br> `pcre`<br> `pdo`<br> `pdo_sqlite`<br> `phar`<br> `posix`<br> `readline`<br> `session`<br> `sqlite3`<br> `tokenizer`<br> `xml`<br> `xmlreader`<br> `xmlwriter`<br> |`geoip`<br>`gmp`<br> `igbinary`<br> `imagick`<br> `imap`<br>`ioncube`<br> `ldap`<br> `mailparse`<br> `mcrypt`<br> `msgpack`<br> `mysqli`<br> `oauth`<br> `pdo_mysql`<br> `propro`<br> `pspell`<br> `raphf`<br> `recode`<br> `redis`<br> `shmop` `sockets`<br> `sodium`<br> `ssh2`<br>`tidy`<br> `xdebug`<br> `xmlrpc`<br> `xsl`<br> `yaml`|
5050

51-
The PHP module requirements for {{ site.data.var.ee }} are tied to the Magento version. See [PHP requirements]({{ site.baseurl }}/guides/v2.4/install-gde/prereq/php-settings.html).
51+
The PHP module requirements for {{ site.data.var.ee }} are tied to the Magento version. See [PHP requirements]({{ site.baseurl }}{{ site.gdeurl }}/install-gde/prereq/php-settings.html).
5252

5353
{:.bs-callout-warning}
5454
PHP compiled with debug is not supported and the Probe may conflict with XDebug or XHProf. Disable those extensions when enabling the Probe. The Probe conflicts with some PHP extensions like Pinba or IonCube.

src/cloud/project/magento-app-php-ini.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ realpath_cache_ttl = 7200
4343
These settings allow PHP processes to cache paths to files instead of looking them up each time a page loads. See [Performance Tuning](https://www.php.net/manual/en/ini.core.php) in the PHP documentation.
4444

4545
{:.bs-callout-info}
46-
For a list of recommended PHP configuration settings, see [Required PHP settings]({{ site.baseurl }}/guides/v2.4/install-gde/prereq/php-settings.html).
46+
For a list of recommended PHP configuration settings, see [Required PHP settings]({{ site.baseurl }}{{ site.gdeurl }}/install-gde/prereq/php-settings.html).
4747

4848
## Check custom php.ini settings
4949

src/cloud/project/project-patch.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ functional_areas:
1414
Both packages improve the integration of all {{site.data.var.ee}} versions with Cloud environments and support quick delivery of critical, optional, and custom fixes. You can use these packages to apply, revert, and view general information about all individual patches that are available for Magento.
1515

1616
{:.bs-callout-tip}
17-
You can use the [Magento Quality Patches]({{ site.baseurl }}/guides/v2.4/comp-mgr/patching/mqp.html) and [{{ site.data.var.mcp-prod }}](#standalone) packages as stand-alone packages for {{ site.data.var.ce }} and {{ site.data.var.ee }} projects. We recommend using the Magento Quality Patches package for non-Cloud projects.
17+
You can use the [Magento Quality Patches]({{ site.baseurl }}{{ site.gdeurl }}/comp-mgr/patching/mqp.html) and [{{ site.data.var.mcp-prod }}](#standalone) packages as stand-alone packages for {{ site.data.var.ce }} and {{ site.data.var.ee }} projects. We recommend using the Magento Quality Patches package for non-Cloud projects.
1818

1919
When you deploy changes to the remote environment, `{{site.data.var.ct}}` uses {{ site.data.var.mcp-package }} and `magento/quality-patches` to check for pending patches and applies them automatically in the following order:
2020

@@ -201,7 +201,7 @@ To apply and test a custom patch on a Cloud environment:
201201

202202
## Apply patches to a non-Cloud project {#standalone}
203203

204-
Use the [Magento Quality Patches]({{ site.baseurl }}/guides/v2.4/comp-mgr/patching/mqp.html) package for {{ site.data.var.ce }} and {{ site.data.var.ee }} projects.
204+
Use the [Magento Quality Patches]({{ site.baseurl }}{{ site.gdeurl }}/comp-mgr/patching/mqp.html) package for {{ site.data.var.ce }} and {{ site.data.var.ee }} projects.
205205

206206
## Revert a patch in a local environment
207207

0 commit comments

Comments
 (0)